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 | |
|---|---|---|
{
"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": {
"nvd": "{\"cve\":{\"id\":\"CVE-2025-15284\",\"sourceIdentifier\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\",\"published\":\"2025-12-29T23:15:42.703\",\"lastModified\":\"2026-02-10T20:16:43.620\",\"vulnStatus\":\"Undergoing Analysis\",\"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\"}]}],\"references\":[{\"url\":\"https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9\",\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\"},{\"url\":\"https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p\",\"source\":\"7ffcee3d-2c14-4c3e-b844-86c6a321a158\"}]}}",
"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"
}
}
}
FKIE_CVE-2025-15284
Vulnerability from fkie_nvd - Published: 2025-12-29 23:15 - Updated: 2026-02-10 20:16| Vendor | Product | Version |
|---|
{
"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."
}
],
"id": "CVE-2025-15284",
"lastModified": "2026-02-10T20:16:43.620",
"metrics": {
"cvssMetricV31": [
{
"cvssData": {
"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"
},
"exploitabilityScore": 2.2,
"impactScore": 1.4,
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"type": "Secondary"
}
],
"cvssMetricV40": [
{
"cvssData": {
"Automatable": "NOT_DEFINED",
"Recovery": "NOT_DEFINED",
"Safety": "NOT_DEFINED",
"attackComplexity": "LOW",
"attackRequirements": "PRESENT",
"attackVector": "NETWORK",
"availabilityRequirement": "NOT_DEFINED",
"baseScore": 6.3,
"baseSeverity": "MEDIUM",
"confidentialityRequirement": "NOT_DEFINED",
"exploitMaturity": "NOT_DEFINED",
"integrityRequirement": "NOT_DEFINED",
"modifiedAttackComplexity": "NOT_DEFINED",
"modifiedAttackRequirements": "NOT_DEFINED",
"modifiedAttackVector": "NOT_DEFINED",
"modifiedPrivilegesRequired": "NOT_DEFINED",
"modifiedSubAvailabilityImpact": "NOT_DEFINED",
"modifiedSubConfidentialityImpact": "NOT_DEFINED",
"modifiedSubIntegrityImpact": "NOT_DEFINED",
"modifiedUserInteraction": "NOT_DEFINED",
"modifiedVulnAvailabilityImpact": "NOT_DEFINED",
"modifiedVulnConfidentialityImpact": "NOT_DEFINED",
"modifiedVulnIntegrityImpact": "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/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",
"version": "4.0",
"vulnAvailabilityImpact": "LOW",
"vulnConfidentialityImpact": "NONE",
"vulnIntegrityImpact": "NONE",
"vulnerabilityResponseEffort": "NOT_DEFINED"
},
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"type": "Secondary"
}
]
},
"published": "2025-12-29T23:15:42.703",
"references": [
{
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"sourceIdentifier": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"vulnStatus": "Undergoing Analysis",
"weaknesses": [
{
"description": [
{
"lang": "en",
"value": "CWE-20"
}
],
"source": "7ffcee3d-2c14-4c3e-b844-86c6a321a158",
"type": "Secondary"
}
]
}
RHSA-2026:2129
Vulnerability from csaf_redhat - Published: 2026-02-10 09:39 - Updated: 2026-02-11 05:31Notes
{
"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.21.1 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.21.\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.21.1. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:2082\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.21/html/release_notes/\n\nSecurity Fix(es):\n\n* helm.sh/helm/v3: Helm Chart JSON Schema Denial of Service (CVE-2025-55199)\n* helm.sh/helm/v3: Helm YAML Parsing Panic Vulnerability (CVE-2025-55198)\n* github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload (CVE-2025-65637)\n* python-eventlet: Eventlet HTTP request smuggling (CVE-2025-58068)\n* qs: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n* golang: archive/tar: Unbounded allocation when parsing GNU sparse map (CVE-2025-58183)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.21 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.21/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:2129",
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"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-55198",
"url": "https://access.redhat.com/security/cve/CVE-2025-55198"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-55199",
"url": "https://access.redhat.com/security/cve/CVE-2025-55199"
},
{
"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_2129.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21.1 bug fix and security update",
"tracking": {
"current_release_date": "2026-02-11T05:31:04+00:00",
"generator": {
"date": "2026-02-11T05:31:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2129",
"initial_release_date": "2026-02-10T09:39:14+00:00",
"revision_history": [
{
"date": "2026-02-10T09:39:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-10T09:40:01+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:31:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.21",
"product": {
"name": "Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.21::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:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-ui-rhel9@sha256%3Abda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725649"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Ae2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3A459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Ad2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3A9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3A313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Afbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3Ad91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770023992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3Ae06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770207153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3Aa562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3Aa1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Ab1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Acac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729915"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Af81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3Ae8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3Aaf5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3Aa73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3A56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Aafb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3Ab1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Ab1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3A054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3A59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770207474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3Ad5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Aa5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Aae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Aace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3Ad2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770140253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Ae5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Aac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Ac2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Adc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Adf49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3Aa99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Af50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Ab11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Adf00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Ac2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3A5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3Aff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Aad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3A6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3Ae168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3Ab9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3A71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Aef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Ada7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ad797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725575"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3Aa8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3Ae7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Abfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3Abdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Af12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Ac9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3Acc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3Ab5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Aa2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Aa330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3Abdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Adff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Acb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ad74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Ae0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Aecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ad6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Abfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770082197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3A2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Aa5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Afc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3A63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3Ace8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Aa882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3Adfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Aa0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3A9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3A1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3Aefc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729805"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Ac143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729265"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Ac20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Afb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725582"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-machine-controllers-rhel9@sha256%3Ad29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3Ad1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3Ae97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Ad1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3Ad9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769731034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3A177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3A503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9@sha256%3A899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Abc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9-operator@sha256%3Abc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Abec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Aa523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ab4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-problem-detector-rhel9@sha256%3A3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770042469"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Ac6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3A37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Af5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3Ad4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3A93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770023992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3Add60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770207153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3Adea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Ad41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Abf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729915"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3A84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Aaf2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Ac1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Af2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ad172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Ab2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3Af3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Ae518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ab6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3A3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3A8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3Acca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770207474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3Ae0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Aed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3Ad289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Ad5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Aa936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3Adb0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770140253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Adc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Aa06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Ab93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Ae53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Aabab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3Ab94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3A6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3Aeef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Accf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3Abbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3Ae4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3A54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725155"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3A4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3Af8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3A1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Afd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725575"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Ac6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3Aafee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Af71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Acef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3Afd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ab836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ade5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Adb30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Ae8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3Ad5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ad1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ab83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Ade2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770082197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3A49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Aeb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Af7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3Aa2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3Aa06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3Ac20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Af267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Ad1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729805"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Ac866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729265"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Ae3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3Aa4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ad0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Af52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769731034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Ad6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Ac0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Aa260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Aa0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3Ad6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3Ab8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725145"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3A82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Af7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3Af055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770023992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770207153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Ad78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3Ab5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729915"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Aadb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3Aac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ac865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Aae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ae18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Aa0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Ae5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Abedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770140253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Aeee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Aa820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Aa70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Afa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3Abd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3A380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Ae1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Aef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Ab046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725575"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3Aeffc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Aa921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3A6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3Aff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aa514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3Ac1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Ae56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Af727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ac00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Ac6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ad7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Abed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Ae88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3A91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3Af4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Af270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Aef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3A0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3Ac8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ac16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Ac7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3A754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Adb28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Abdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3Abc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3Ae37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3Adb55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Aee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Af1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729805"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Ac5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Adfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729265"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Abd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Ae45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769731034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Adcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Adacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Aa2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Adb230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725145"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-karpenter-provider-aws-rhel9@sha256%3A021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Ac16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725150"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725787"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3Ad113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770023992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727537"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770207153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726188"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725177"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729915"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3Aad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3A12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3A736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshot-metadata-rhel9@sha256%3Aa3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726091"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3Ad745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Af516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ad4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Ad3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Acece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Af80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Adcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728595"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726213"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Ad10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729579"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726273"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3Addbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770140253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Adc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728973"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Af47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Af5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734559"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Abd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Ad195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3Ac9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3Ac5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ae5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openstack-resource-controller-rhel9@sha256%3A7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727961"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Ac730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729031"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725366"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729157"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Ac7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729469"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3Abf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770081958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Acdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729529"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725575"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769786362"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3Adb281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Aeab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3Ace34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ac247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123291"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728653"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770231203"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726597"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3Ac7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Abda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Aa7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3A3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728217"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Afed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Adbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ad3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725174"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Ad5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Ad0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Ad08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Affcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725175"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729619"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729778"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Aa0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Afba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770082197"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Aefe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727345"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Add8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3A1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770100286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Ad8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ae19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3Ae0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727442"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729805"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770123102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729265"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769734637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Ae8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Aedd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728251"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770122325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728149"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769731034"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727393"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Aff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3A5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3Accdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188836"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769730378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769729589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Ad04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769728905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Af3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769727104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3Aa6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726913"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769726253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/volume-data-source-validator-rhel9@sha256%3A8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769725145"
}
}
}
],
"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:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64 as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le as a component of Red Hat OpenShift Container Platform 4.21",
"product_id": "Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
}
]
},
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_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.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T09:39:14+00:00",
"details": "For OpenShift Container Platform 4.21 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.21/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:7ca8870aa5e505f969aa26161594a3f99b65baf7d29bab8adaca0cade51b0bb6\n\n (For s390x architecture)\n The image digest is sha256:b33dc753fbb59cc939496922a7f65b3eaf145214f5635c9824790a5bc7a0b5a2\n\n (For ppc64le architecture)\n The image digest is sha256:46bd467d5cee3e80019ef25c8af7460dfee7e5ae376dd640b76251666eafc98a\n\n (For aarch64 architecture)\n The image digest is sha256:6d018f320d0ba0496fe3410470c2ea3c58e9d77a95fe0f64f3120bc1115f9bf1\n\nAll OpenShift Container Platform 4.21 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.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-55198",
"cwe": {
"id": "CWE-908",
"name": "Use of Uninitialized Resource"
},
"discovery_date": "2025-08-14T00:00:50.788448+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2388451"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in helm.sh/helm/v3. Improper validation of type errors during parsing of Chart.yaml and index.yaml files can trigger a panic. A remote attacker, requiring user interaction, can trigger this panic via a malformed chart file. This can lead to an application level denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "helm.sh/helm/v3: Helm YAML Parsing Panic Vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-55198"
},
{
"category": "external",
"summary": "RHBZ#2388451",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2388451"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-55198",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-55198"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-55198",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-55198"
},
{
"category": "external",
"summary": "https://github.com/helm/helm/commit/ec5f59e2db56533d042a124f5bae54dd87b558e6",
"url": "https://github.com/helm/helm/commit/ec5f59e2db56533d042a124f5bae54dd87b558e6"
},
{
"category": "external",
"summary": "https://github.com/helm/helm/security/advisories/GHSA-f9f8-9pmf-xv68",
"url": "https://github.com/helm/helm/security/advisories/GHSA-f9f8-9pmf-xv68"
}
],
"release_date": "2025-08-13T23:23:56.780000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T09:39:14+00:00",
"details": "For OpenShift Container Platform 4.21 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.21/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:7ca8870aa5e505f969aa26161594a3f99b65baf7d29bab8adaca0cade51b0bb6\n\n (For s390x architecture)\n The image digest is sha256:b33dc753fbb59cc939496922a7f65b3eaf145214f5635c9824790a5bc7a0b5a2\n\n (For ppc64le architecture)\n The image digest is sha256:46bd467d5cee3e80019ef25c8af7460dfee7e5ae376dd640b76251666eafc98a\n\n (For aarch64 architecture)\n The image digest is sha256:6d018f320d0ba0496fe3410470c2ea3c58e9d77a95fe0f64f3120bc1115f9bf1\n\nAll OpenShift Container Platform 4.21 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.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure YAML files are formatted as Helm expects prior to processing them with Helm.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "helm.sh/helm/v3: Helm YAML Parsing Panic Vulnerability"
},
{
"cve": "CVE-2025-55199",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-08-14T00:00:43.927450+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2388449"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in helm.sh/helm/v3. A maliciously crafted JSON Schema file can trigger excessive memory consumption during Helm Chart validation, leading to an out-of-memory (OOM) termination. A remote attacker, requiring user interaction to provide the crafted file, can trigger this condition. This issue results in an application level denial of service affecting the Helm process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "helm.sh/helm/v3: Helm Chart JSON Schema Denial of Service",
"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.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-55199"
},
{
"category": "external",
"summary": "RHBZ#2388449",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2388449"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-55199",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-55199"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-55199",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-55199"
},
{
"category": "external",
"summary": "https://github.com/helm/helm/commit/b78692c18f0fb38fe5ba4571a674de067a4c53a5",
"url": "https://github.com/helm/helm/commit/b78692c18f0fb38fe5ba4571a674de067a4c53a5"
},
{
"category": "external",
"summary": "https://github.com/helm/helm/security/advisories/GHSA-9h84-qmv7-982p",
"url": "https://github.com/helm/helm/security/advisories/GHSA-9h84-qmv7-982p"
}
],
"release_date": "2025-08-13T23:23:43.304000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T09:39:14+00:00",
"details": "For OpenShift Container Platform 4.21 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.21/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:7ca8870aa5e505f969aa26161594a3f99b65baf7d29bab8adaca0cade51b0bb6\n\n (For s390x architecture)\n The image digest is sha256:b33dc753fbb59cc939496922a7f65b3eaf145214f5635c9824790a5bc7a0b5a2\n\n (For ppc64le architecture)\n The image digest is sha256:46bd467d5cee3e80019ef25c8af7460dfee7e5ae376dd640b76251666eafc98a\n\n (For aarch64 architecture)\n The image digest is sha256:6d018f320d0ba0496fe3410470c2ea3c58e9d77a95fe0f64f3120bc1115f9bf1\n\nAll OpenShift Container Platform 4.21 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.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure all Helm charts do not have any reference of $ref pointing to /dev/zero.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "helm.sh/helm/v3: Helm Chart JSON Schema Denial of Service"
},
{
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"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.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
},
"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-10T09:39:14+00:00",
"details": "For OpenShift Container Platform 4.21 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.21/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:7ca8870aa5e505f969aa26161594a3f99b65baf7d29bab8adaca0cade51b0bb6\n\n (For s390x architecture)\n The image digest is sha256:b33dc753fbb59cc939496922a7f65b3eaf145214f5635c9824790a5bc7a0b5a2\n\n (For ppc64le architecture)\n The image digest is sha256:46bd467d5cee3e80019ef25c8af7460dfee7e5ae376dd640b76251666eafc98a\n\n (For aarch64 architecture)\n The image digest is sha256:6d018f320d0ba0496fe3410470c2ea3c58e9d77a95fe0f64f3120bc1115f9bf1\n\nAll OpenShift Container Platform 4.21 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.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_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-02-10T09:39:14+00:00",
"details": "For OpenShift Container Platform 4.21 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.21/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:7ca8870aa5e505f969aa26161594a3f99b65baf7d29bab8adaca0cade51b0bb6\n\n (For s390x architecture)\n The image digest is sha256:b33dc753fbb59cc939496922a7f65b3eaf145214f5635c9824790a5bc7a0b5a2\n\n (For ppc64le architecture)\n The image digest is sha256:46bd467d5cee3e80019ef25c8af7460dfee7e5ae376dd640b76251666eafc98a\n\n (For aarch64 architecture)\n The image digest is sha256:6d018f320d0ba0496fe3410470c2ea3c58e9d77a95fe0f64f3120bc1115f9bf1\n\nAll OpenShift Container Platform 4.21 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.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418900"
}
],
"notes": [
{
"category": "description",
"text": "A denial-of-service vulnerability in github.com/sirupsen/logrus occurs when Entry.Writer() processes a single-line payload larger than 64KB with no newline characters. Due to a limitation in Go\u2019s internal bufio.Scanner, the read operation fails with a \u201ctoken too long\u201d error, causing the underlying writer pipe to close. In affected versions, this leaves the Writer interface unusable and can disrupt logging functionality, potentially degrading application availability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is categorized as Moderate because its impact is limited to the logging subsystem and requires a specific, non-default usage pattern to trigger\u2014namely, sending a single unbounded line exceeding 64KB through Entry.Writer(). Most Logrus deployments do not expose this interface directly to attacker-controlled input, which raises the attack complexity and reduces realistic exploitability. Additionally, the flaw does not affect confidentiality or integrity, nor does it allow code execution or privilege escalation. The failure results in a controlled degradation of availability (logging becoming non-functional), rather than a broader application outage or systemic compromise. These constrained conditions and limited real-world impact justify treating the issue as moderate rather than important.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-65637"
},
{
"category": "external",
"summary": "RHBZ#2418900",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418900"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-65637",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65637"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-65637",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-65637"
},
{
"category": "external",
"summary": "https://github.com/mjuanxd/logrus-dos-poc",
"url": "https://github.com/mjuanxd/logrus-dos-poc"
},
{
"category": "external",
"summary": "https://github.com/mjuanxd/logrus-dos-poc/blob/main/README.md",
"url": "https://github.com/mjuanxd/logrus-dos-poc/blob/main/README.md"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/issues/1370",
"url": "https://github.com/sirupsen/logrus/issues/1370"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/pull/1376",
"url": "https://github.com/sirupsen/logrus/pull/1376"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/releases/tag/v1.8.3",
"url": "https://github.com/sirupsen/logrus/releases/tag/v1.8.3"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/releases/tag/v1.9.1",
"url": "https://github.com/sirupsen/logrus/releases/tag/v1.9.1"
},
{
"category": "external",
"summary": "https://github.com/sirupsen/logrus/releases/tag/v1.9.3",
"url": "https://github.com/sirupsen/logrus/releases/tag/v1.9.3"
},
{
"category": "external",
"summary": "https://security.snyk.io/vuln/SNYK-GOLANG-GITHUBCOMSIRUPSENLOGRUS-5564391",
"url": "https://security.snyk.io/vuln/SNYK-GOLANG-GITHUBCOMSIRUPSENLOGRUS-5564391"
}
],
"release_date": "2025-12-04T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-10T09:39:14+00:00",
"details": "For OpenShift Container Platform 4.21 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.21/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:7ca8870aa5e505f969aa26161594a3f99b65baf7d29bab8adaca0cade51b0bb6\n\n (For s390x architecture)\n The image digest is sha256:b33dc753fbb59cc939496922a7f65b3eaf145214f5635c9824790a5bc7a0b5a2\n\n (For ppc64le architecture)\n The image digest is sha256:46bd467d5cee3e80019ef25c8af7460dfee7e5ae376dd640b76251666eafc98a\n\n (For aarch64 architecture)\n The image digest is sha256:6d018f320d0ba0496fe3410470c2ea3c58e9d77a95fe0f64f3120bc1115f9bf1\n\nAll OpenShift Container Platform 4.21 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.21/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2129"
},
{
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:021a57a7ea58117b5942b474f8899924fe7ff170b234aaa301f86ff465726ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:37283f08df56189fd19f7052523f5eda5a5eba0096c32fc3926eda3bc9398a8c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:459032d57026d4dbb2af370f796c28a69e2e30389a84cdab0e43de4435d980a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:82ebaab991c00d42430890eed6322e9d060c3b4581ad563383a7d13172de4c08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:244a4dfcd32e2a6bed90fd5e452b63822af9eb60375b9ac45c1864c2fccaf765_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:4eda87164b71e7c6fd8b5a39ea77bb1bbf138f43d5732c08e314369b18e2509b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:d2d6b9b7d7cb72703bda76e6814e5714b101faa03b14f55507b82dddce6fa09a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f5f2d566546e640f59746e3616b98dab55eacdd33ea04b7cff887da6cafbe380_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:21cd6ff9f8ff53d747746f2d772344a8a9be9bd4582d641a0d6814da81e42dc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:c16a9db40d92bd605eb9843f2fb30f793e9f807e924a98f58bdfe9e8ff5598fe_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f7eaa545a5719eea518c0d48a5010a9e729ca7657f95712b86bd091c6906ed9d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fbad6ec51decaf69511274952af912054493d07f8de4aeb044b0728e015e331b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4b6ce9a91e0408d0869e2d64ccfba93b8b0587c8c4514c024093e47d520b7b13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5bab5f51374c260e261af4d094d6d834011bb00d20269e5f87c670ab2e5fc50f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b046acdbaee02a88bc76e80217864aa8a933b4c624abf504bf40b3b5700a3ddf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:da7ec98aeffdf151279fbfd2d45163722323094e790ab1e5b14e3a75bebf7ba2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:1320fee14f620ff211195e536a81bf80c41140d10d8493dca37f484b4803e1a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:69849de1ca4d23c9faf12777ff7f26deb7eaf3026725512e29e7cfbfcb5e30dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7ae48499c990a9bb0ccfd436de6e4586ba27e9fd4036b4efe76299aafc4520e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:bdb7981f8aadb7c27bdc448ce4baed28ddd8d08ae1a83af66255bc70d3b87d63_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:06477b1ed6e12b1088fa198f1158cedd852d51773f75622a652220d147aad66d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:73cd8858eb6e706064aa3fb5b397696ad2a8d264ed9380ceeb8d8d89afa96914_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:95a5dd3ee93857d9e65d57257e2864774e0f1aa15d14c62765dd110807a7e983_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bf017210bb8bfbefa027c830656e83b3db86e940e5ef1f62e67fdc84545cd118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:04441c2a5c244d0a76052a2e071d994d81415da2cbf49cdd74d3b64fae89fea4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:50caa5c63088b2cd98d85bf793eed760beae31c73d8cccc60f3c82f7e4a436f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:5d302fd1e0d562fd3074aea7fda53b46878dd5c27f53b4086f43e0b60c69cd92_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:c1ec441285a07891350ef5b92dfe8cdef23f963d39ee86b7c2eaa0f29deced63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:29924ddf95c884e61e24bc38d457d4bb997c5a03789459ef7565f2350c778e44_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:865ec06e1488b9c81e370e48824dcd003c617f45198943118f99889c9a23ae5b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9c28ccab17d26b72d9ae5d65f7a1ea11bbbd2cd39076f517e6655b9a35a277b9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:f2a4bddcbf9cd3c04f90623faceceb3f3633ebea89954ddd26dadad9b6f9cc1a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:0f34558006e45eb8ad74dfad87ee15c34e2d5bce5f192fb00290ba8f6b2e06a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:a0104045a7c163322387f621af644a79ba8b3e2d44bfa4094db15fad792e7825_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:b83a1577d6d15ea51ba7417aadaf190944d02a36e1067ff9973b9b0e59f207b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:bfeca6b1d120f47ef42ace529f8663c90e420a3d1067891268e0fbbcd0c8fd3b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:09fb74bc16d6152ee950f1e2e01a72244e43c030205e6878577ae8a288f229dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:933bdee9a720806a6c7537ed79ad75e25ae64144eb7e738942c36b2a72427c51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a882578ad9240c994b4f21955809f6d332965cde3686fd2da1c4bc1bd89181f5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:eb823609e74431800e5bd7fd2399e11d17ea8cf0a16a578b70f1447aadbfe8d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1a4a79d38290e993721e5a239acdc973fd395188d4b47ef664716249561f9b9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1ab570c571e5291796e3eccbc336775207aced63674920c7416c67fdcdda5ef1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:46f5577da7e69caa3c941ead5de0ce8e373a77348df4c9dda922319a47533af0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:dfb1568b260cebf47b31b5bc5b956dd573ef5e10f5c04bc7951d4aefba1e1c29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:6405c266dbbd8b035f0fdec36d4663fdc2e3981899fec3828e7bcac0094f981c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a0ce68bd8e54f1975c89b6739bc6d94e9ad8214df431d1c41907866dab1cd9f6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:bdac9d54f25066cf36bac0fe90d1df7d89fb91d49ac68c09db1cf14862c91b43_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d8254c11772cacaf25e2a1b24b41a7694b530246cb980ce80caa5298acc71c31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1b5aa2a8fa69661df2b4cef49e2a8e25e20ecba84ca80d5c671d8cdc73e7e31d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:54c656c9b7ff7f7d9412253dcb0c4484233f4cbe77512b63e69ba1532a4a41d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2d16879e07bae5f6eddbb5615c313001ffc4b74e91849ee9c2496bbb5996616_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e37862fed49b426c4344fa755c3442dfe134922b3b5a3c80c4bf4abaea7e6563_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:04e4334b0ce10eb5402543501944e72b9230c79f470f5976f8e5bcd5a18cd28e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:34a11ddd5af5a8d2331804ab76c6319587bcab73bbafc10b6f710260e5ace5ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:86ff72407e38fffd121bee52ed9e1229213f5db18cf1324a08296597aaf494b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:edd7568d61e33652709d4bca937a801a4eb6a0f134ec7866eae3da1f19a01400_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:44623a58b3a052f8cf871befe578ff1419b5a36c9f61849bdf58a15148c3f65b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:78ba410665c68a41a5adbd8422a349de2274be894328ce523364f1ec2a71be01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:823e1e9e7e7743538180596210828b19b6e3c8f435a7c792be5b945be76d9956_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:eee0084caae19613373c30ac9d2f25de2c202dc83cb6b3077baeab3b2ca89c26_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:17d193d080ae253f4e43ab259c28fd84f5f738967fe2ad4b6528fd42dedb86e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:36ed0be4ed17c503bb07435b198cbd5e255660bb1e72ce49db7ccbcb3ce92a23_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7c1aa77f92efcbd6fdea6120c75e2cb19985aaa2cc48e2d4d3d4ecb87df0d277_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d6dac5da24656ce0a1494234b06783b5e4ef052c0d283e66f881c21d1766c51a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:380b5a968a30fa54a963bacfc37767a01f6067b6290fd2d877d6b1943a7738a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6d1570e8f771ef561c5ddca5410cb86dbc94943cb23b6f96fb2dbe5b9a2f1823_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:7a9f65149b802b3c2ac4d2a96bf53c1dd6eedf8c5fe921783962197bbce94207_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a99a994a160375e89550347eed1631bb0d12bb4dccf7ed49119935520b744235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:22b6a40bf066153e072a2d22e48032b91a7f70e2de0d38b2bc5665b72f5635ca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:499dba655c620472ffee2c73f5f6c53599dcaa8755af1ddf60388702041c6cfa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:9f82e685ce4849aacbc315249403939d8e9fa55ca297ec0d829d445a3133ed9b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b11b0fd3272461cb95d4f3c79c5c1138770085b461fb8c64c5f19f3f2276abf5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:06ef27c670aa46891c208f0a1ce5be98a92a321e81865484c17db725d6c48f6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:50187fe1e5905226e869fe96d050d1fa6c91c0ca9f360456030514a0f3efa2a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:828613cff0791cce90feb1abaf17c31f8a89e409f605d23ca79904feaafa8cc6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:889a2f9b69467f174deb05d9f57eccfd85e8f6e2ce2620a3e3b5c15019a108c3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:381cea76282031f4a018997a2ddcaf6222576807356d45ab3357b52a30f6bb3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:604bace7f2173c964ecf1b54fe70fc08abbb7a39fcefd21af752c7a12f6f5a31_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:7acae5b318d8162c7da445ecc28ed374eb1db0a92e3e6136f1a3d6a82bd75495_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:df00671b04cef1d122484a876880dbf4cc250c63730537fef7e1651b58f9a9dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7246c15cef44f3945840162c1dab72daf8c0c4999345aa6ba148dd34597f4ea1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:c7fa305a0d4a592411905c2f44a8218e25caa39e293ba68e1c84458683c93979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ccf25a1cbb0c79753f4049cc37fafb77d0f8dbdd896e4cad7e9674877dc84589_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e1ff850187bfcc5e53338ee32678873692eb81a7bc72c5d3a928722571d312df_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:bda6a57c2ad84239536aec6a20a9c37fbfc7aa13c994647427936bf0b3b3361c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:49da4e953f3ab4d734c88b4371082bd9c6fbefd00875d8c3f0f8e58f060b6a25_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95c4abf5e354b5a324515cf6e69195ad3576383386665683d4bb8f349e558416_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bbc0c1a5769338492d873bdb15757525f69e250f5a4320d36f249fc35d57d356_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:bf5e48b3778e040c4ebb1a8b0bd2aca2e7814720fa400115ceed9e1745f3e2fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2b26daa64e5d4151cb1cb91cf459afa93b2bdabd2b9d5d28585bec72484c0e63_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c2d77eab011a8025098e1254c384f83af4f7e0d3ba9e6d2772eda689e644b036_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:cdf9f5f665881fa0c5a2f3c98e4c99673dbe8a92cdcbbe6b80e9dce09f59a8dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:ef4521604c721bd0ae8a4b822ac9584d3c7c8a80c5ecfe263da6ff9500d95ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:29a5ed8364575efa8d539b05c002e8b82cc57350d4c015303b4fc46b06903eda_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3751262aca1a347b013648e64294520615e447cb875b1e7c04535c9c5e843ccf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:5bdc6dd4698facc8189308328f6fc62ad7f4a3a5bf8c8a5775fe6e966eb44eeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:e4aa456e8c865f66105e9f1828b455bf09d80960759209703df345a559b36608_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:74cc690a06a3f7ede74550b2416957a6318136ec7b703de33588122e7222eac0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:ad7055ad351c0c24582721dcbf7f422b6a31290104530458e456bddd1a637938_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:54ff1a36ba796e5b88ae421a3836220f5774f0694cd49da8aff5f8c1efaac958_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff8879335cb7031227028d3bbd5ae3c882c721871a28a42216fdf94885cc48f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:4bffd0baad38d0ea6f54efb82701a6530eae707565fee41e2e65682a990267b8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:6381f7fc63ba688a5514eeef31d629e8e6cf01d6910f29f7dd38cc48a49f392b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6792be8aa7640d171ee8102e5315ee2cb5e51af62f7f9ebdfbb0b54e89e35cbf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:e168e04989169bf67e16af77f602c8d762b1ef424f4abc92ad8ef8a135d6fe69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:b9e9f7cb5894890829532f10dda00d008bc5745b999b76daa26b5667e00e0b87_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f8ab11c42ded9679807701a6c9564ff67b13ba875e28cdbb7663d9382f8e194c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:203f1d7c4feca08547dfa923507640370e669f83029fcd373e4e93461cce9421_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8b16e6a9162b06a6565a48f4b05f3a1681f9f6349278d4f44d93ebe60d96c566_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:ef131d257bfc318cd0071ea2867d209fd8088da69e92fd3d07bce2b86d4eb2f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fd5a0222754643780d37e10af8b077bf257b5b4be2abfd2393f0423a4fd4b291_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1f910938470138dfb6656b608393e46eb5c59d76edcca34b8bbc7148f2479061_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:71ce3309765f3dea75ed45541065b35f0aeb697d59b013294775e84b780f361a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:313d893f24ad6f2f8c7881f418b9a5e9c499674052a97434372d1d079411ffc2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:93bef2950591dfbc736a80f6a92659b6868991040450c5cc415d32e225177512_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9487390a62cbea3de31fcfa46d05ff56a9d088426101b056254d0a3dddd6631c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:d4cd54fcdc26243209c918dbb1dc54e940965cd12cb6d05259c0ed45e3755516_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2f9449039570a38ef4191b3717a9597219919ffaff87b645f06c4daec74a3cbc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:5d72d27d9247c2a9ae05a1e496eea2c264df19be8a566147cf5cdf378d82ac4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2b1553659b6cb1a4fc9e75dca05c4117d98894a5ec55a650fb60a2062cf1b79b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:35d963f072ba8d1d78380c48815bd2d06dff7f1917e493ca64a37d319988e6a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:42870b8a98ae271ad0f0b23ad541bc37a9585e93dc6822f149a0bcf53c78036d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d797ecf477151c6821be3fb5e18dfa8f8df04233fa9f7da7b554da9eb38f0058_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:27d55172feba74eb9712fdb42300721acfa72e5d3739feac7c4353f8a36b4b38_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5bba9f8444a0daf6194a6eda5d1b027781717446435ae4249a558a31fe17e06e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a8840079bf9bf05cf2f9c4a7f38bb45b09baee82128d12df604007278fbdb198_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:effc3a9f6c7bb400163dbda690d84d9ef4d40736105a2594209efa8c0c5dc80b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:3b6acf7cf4c49d979d30049d80bd265e7e8f17331648008bb4f9033822ed0a41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b377378d275c0a152365c6dcfa6e5f51a30de20210991ad8a4b5c45654cf022_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:855e978f66e69d149f00f5cdea64c68b677a1f2e9e1c28f3f67846bd5497ea9a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:9bbfc2d46e0e771ef7bf390e121f26b0dede58ac0ab6cc04e7592469a78ae5c8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:101533b9ac484f5e8c3f1d95b742f3596fdf42d6a706aeca5712648ca50e8ce2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:2918100b369a980a69fdd9d0bc0fc7c898bcdde23f8ac8c9a8a22066f2b1d87d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4f2d8d750ce5932589e4c3b10579f00da60407a89be1976f3b54184c997650ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e7b4095c367aa9811dba1e43cda61f60b54b9536d9900990e7e6eac745ec7ac9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1bb758a596fc11988a09a696981630bd00a73dca7c4ed52799f722ef87db6a91_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:50aa9b6ba005c3f004568e82cc73eb56ba6342720626f9a35eca618fd1ac9cc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:982fa1221449a4e78c06e6a13b7ee325b8951a8a04d0014939dc49b13c6ab79d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:f055755224db92970aa09e26ab84f8f8c3a67c2c8cd442eb4e7764e3474d4613_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:719c8857fcfce93887b77a94974d418e3bf19befe0ed25c5974bfc7ed53814bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:90f04dac670c4d0c505cf8f96d020c9e3f4c0747b91dc2a2531db407ffdcfbd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a921b1d40f1ebac4edf1d6bbe26fd7e39329776044e17d7f2409b20792acc271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:db281fb5bc3ccd949d2156d7eafe5691ecc317c3e690f9987436d8b4317e6ec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:0a68822ea4fb06b74890aebdb694cbba827a5c1b9519b5a4d2086a867464fa2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:38a4de43972a5ae5404ebc5862329c0b59ee5a6c72b5e3fa8be3171ad65ec713_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:dc970cb4ede420e1d131a6146d256269ca6fb34b633c17315e6b202723765bd7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f47d18b4634f6f675e50f165a805f33970a038843dd48fe8a02b3924fa70e8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:6731876f6a37e6e26e079b4d8901f7bdcdcb6f34f8f27c850ec813ca5b3a9543_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bfebb3f4a3a9476c2307fafdc5ec3fe7586c51dde9c5448fde7d34e37e2f45af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c6b9b4bd2d7210a42dda555d8375807bec66a4f8693fdf256042b49b3f0130c6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:eab2bb53112191763cd944b3b13cf750ea9390b56d7d14d312183ffe56d0a394_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3ca197c0d720c1314db2f36fdd4f1fd81f0b729829f27b39508f0a6e7ecf7bab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475e121c7d6f480d7d2545252a7b59510a66cfb609f586bb587595ccfa3b71d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6cedc3acc4032d410aa6c0142de17e62461401a772a09c795371238dc00fe91b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:ce34f62e6953d64b6566905934afc4a1f5911ec68483f5ceecb59d187e37a955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2037952b4938add2200b79534d571adffd95bb0c6ce04e7ea4a6c0ad85389771_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:698f43ebb93c00ee0a916be218a7819d0a402e32c12724afc51f2323c26d541b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c247cff3341da9969055ddef313806cda81c2dac492ce683d4abcd5ceb5a9bc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:f12ba7fce7d3a13280d4bfe412b9b54ca22baa52b90be0fd7825ac719f1de068_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0d06e661c793f5524b749bff4124ebcc17b7acff1b57a672064c072dd7b0390d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:484c08c7c512dfb681137cbf0cdd45f42ed4181a690076f6dc6920724687655f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:8a100494af630b1dd1ac3e0a7c75fba4853a1e7471a0b6eae2f7d6b7762beeee_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c9329187e9bde81fc4f0b4996c909fe4e9354e58fe353340600532153254e5b4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9143250b98cf0e2f2b3ec33bc25a856d0b2dd432d1994740e639bde2ed1deb29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:9a7f2845529ffd78d9193a8329bd1761b7723678b83e8d5362aaafa657c398eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c6ef91fb95bad775d172019ab1b5f9c275c2302f85f04c0504273be57eab1989_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:e2becd018c34a7c29e770fa329cba4f1a371d4b089451365abb35acacedbcdfb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5279e457358edeae97e136d8067f05d60b4b806c92e687bbd11afecda4840eda_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:5d76a917f9cea787b11ab23bed912261cad050e397769c94c1b70cac389c48b0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:88237cdb1714ed0759ff8c96466010145ff8cfd60a7dd3debec25e3a2b33200e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:ff62706a4904af960c4989c87712d896b34265fcaf21ecc9500daecd03561b38_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:15ddf484307e3bc53f165873cf04ea008f4f5720effb19e3ca1aeabd9fae64e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:28a6a3b04348c6191f58b9b0a700acc995d5fbcee3cdf1af5e34dfb0a15918fc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4933a9cb0be09725767981638b9139867cad6a26a228701ec034d45c3f7da4de_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4b571bca7d279192d7095a9d157cdf40f553543b6a39658919bc5920445d1177_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0f18441bd2e164906e7bad119d70b8f5b9b47c1596d58b6d812ee1e2f4b6c0e5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:77df277ba08b5a6efaf78b4ec5e59a7aca2569e00e7644d27e1d2653d80d150b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:afee031de2fff6cb0e07995b5f6c4ac83ab4cf3b83f23a3931a4d7e15a512c1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:cc8b86ad3d080ab5dedb159dfca744ce669341a2491e5a0bab4f59e3dae9ed7e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4a76171907bffd3a94e149dfabb6170331e2fc0a30f3ea7b8eba1cbe68e1fa80_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:62f935bfe570ea83e376ea84589bffcf0b99d30eef620adc813f72501d982705_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:75a992b3a14138492b585b3500a6b6f565c912b193834fa562c990bee8115e90_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9fa46e30f86fbaa943f136733680d0e8a668df1e04d1bcb71160b8bb795a2df0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:58b7b6502847bba5230e65e90a10350d8cdfd331f5656425dd2f310e3fc89cb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:5989d793b9236bdd9dcc1df6d4687a6e0222590453a5e4e31be75d0414c28056_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:7e5383d64b25edf87578b2cf05de47d46fdd2fb6f1f4db5146ead38c887f36a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b5b9266258ab925a7dfd33b86043873af4c0799fc52befbc476f875dc44b810d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:100d472991b3969275774576b60f5ccffacabcf89eb52efbb744aa441cfcce99_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:9a6fe277560deb4c1c2f91a1d56678c5956bc9ba958b859eaacd371f8ca753f4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a2d2bb9ceaaf23ff8430662ff6b267cb36848b2cf311bddcdaae8e33e8736306_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f71926ca5053134743dc906e1c5bbf2fd148acf50e44916a936f3a8e98494a04_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2dbbc016c4e06676f796ec4cd51e68c11c96bcdc41de8dd37c82c3c5c0825cc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:444b74ea4a7a8a664746757e4417aa7e0fb33fed32a4755d300e14a49afba481_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:a330cd288cfbb99db498c3a7e7211eaddc4cc5e39b6343fc6589b958c6ac44ae_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:cef4f16962b3d71927c90e2573873495563e3144b6e3e814acf5a220f1b27193_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:4d6edfa2e5e9d6964a5b9483989f491cb5019ebe9af55116591b321b499bd12d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:62e2bae1dd93787bebcb5f1b58499693f4c6fd620edb3254b776494d2b5a55a8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:a514202264b03a6c80a02e3cfafb7c6a86482449613b5ec0052d1040587fd088_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae40b5055051c07b225c15723da95953a6a7d2dc6dfec8d0469d6f857c8424d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3882b19d141998fdfd1197856ec7826be00034d72633396be628002953fc94a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:39282efac8310ed389b4acc4ff3aabd6367800953c1e8fecbf17926306d1f419_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8df02a6889e22a9763b5c0e7b6934824f682f4683f2085f82dda54de427ba28d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:fd15b8944403c78ee3c0fcbe08aa5ecfcb7b10c14fe5f1a20ba4873295879c8a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:011ac49df806c01b3f64fab0b3d79355b2685c8fc0316653f34359b451ef2ba5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5929d673c5a6a568c88e13586278da184ebda4c9c5a9a4a1f9154ad0e66340ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d113138d214fab52ec3422cd3affe8d3694a1ec30b85778acfa8b114ebffdddb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d91c11d262c19c1f020e9b53da07db82b6d68533f4e697ecff6c722781b4a4ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:5865f0a925e725309c27dc1d71d0dc999cb01b4fbde764ba8def1524f978c0f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:bdbbbd728c482c0c5b5e87af470856aff0c8264d3f490c8ae9d987f21d5bac60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c1230c3643979aff1e615e1de9bcbc758c31f7508b9a3b25fd2eb323eb6b2490_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c7649d6adc16287d38318b6a50107dc1d3aee2e842a19e09822fb86fac31df15_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:70687b2657e8f1cbbff110582b55f3104d0c7f47a44ca1185a7f67e421d76a17_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:bda8d910934ae595f8a53675c74094693de8e0a929fc7c52458b2a9f7cd0b4a6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dff9eb529ea868114b0f46c60f4014b429ce115b0ce949e6855fe29d9270354a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:e56bb2c28d7ddd2dbac95451cc16d547718b651532ec69c85e8f0fcf5785d002_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:1670745d88d0d92a262ab445f81956e894ae5e9b23d490fab96860957c028771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:5cf3f4d1346c07a4e065dad2df083934591b45c714f503b5b617d470e87f1db7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:7adc722fdef132557c191e026fdac56278584f6e49f3902179fc443d87a4165d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:ff467f13cb09556eb490743f878422fa2493b8bca683b8759d7926e8af97dace_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4030ffce9d00de08b95d660595f0f67b2b83756ced6c6439da14d36b0b923729_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:4baea4cfb5bc4a7974f90c3bfbb25e23865b659fd078ec45b4c36ec0d11b78f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:829d8937eb34548f09b89de6dd5a236ae58d6f74501f44c929538c281a8be920_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:a7fc85a92b1d5f7f79d8a8a63e6d9bb4dfc66383ff175fbd956deb1de3127fdb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:78adc3f034871d6d77793932d11b1e5f4b2ff3e1cff0385b44811210a3c84dc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:b836e8f7b31ba9c107a08e3be1cc27e73afa4045210d7fccc817c6058671aa67_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cb550213a7e8671953d5b880c0b651a566be475a3ca0f5b442a2fa9b0bfeeb1d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f727aa55c29332a39fb4e74013b9cc96ea5b32c9cfbb7cbcd79c7031d1a6f44f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:4b1f00007dc39d345013c99c38163e0adc112e5eb81fdf41e1acaa1e0064d7f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6ae9a652c5693c55ceb3ed91fbac054d887142b0f55882c776e42ba20d1dbdcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7ae4ffe7112d35231314490c8d02c6f0947b54c240ace11a87c07dad44d5be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:934380eb6ae83360d1e11f709c58d18c2e69e04b3246a02846f26f9879ca1edc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:5580313395048ffe3d874dec574f7f1f1f21cb84831945de53a80856b4e945df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9bc152718354bb245a765da17d12d0477cbd15d7eda5a86b8c5b1330287fec4c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c00d2c84a5f8c5f1c674d43eddacbbac05782b81ab98cff83b606c35b46d18a5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d74ebc7fd5b30afecc3d9f61ee6c74b2c0f8519514c5614ddfbe9bbc68227509_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:84ca4259de3e923248f7d50c3adcea713871d3d2da66f172c25dd391d22a3bb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c6381254579086af7ec69a4e610680fe0e532a26f7ce202c72d047b89e0db642_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e0eefc7f55d25990d314c2ceb50afe70f7746e467ab7a409fa3d1b44708d9ffd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:fed1fbc1295974647bcbad55e52b199c2d3d4307a3e53e4f8b1db135df9fd8f8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4bbddb6ff2f7429b2f5730d4a3f529b80784f8e42a0acc025e78713d703a2efd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:53a0ebb5fda619248605abeda530cf37fdb7ce99e7b7314cd5bcef2d8d8b7004_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5e37b117f72cf1001bea772e1302186d8f86c0980534b7f359179a5e6926c448_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:6891d22800cc10bd8d773d471bc71c4db64460efab4b30202d42da1daf61a3fd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d1bc6ef87ea978c23ca7189fdf17ad0f54a5f7709a75a25d82e7b84ffadf984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:107f2fcd3f606044c570a980c176047870b304f3212df747995f6eb8a45749bb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6b6e5e25d50219a95d914df16c1c4e761d0bb45a9efd054572e54054f27a6f0a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:dd60fb26e79143000563578f9d72e3bb7cdde4b73dfdfc148b27942197d3be51_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:053d5fdef0973f6017991487843da7a64f8a346025cf46a7c575d6a4bab71d74_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:26318acd09b8263236b4d266c735aad015e3a4b61daafedf266ef1115968f536_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:3ed5dce28d62c36a87ff35dead5806fd124a187e48051a0d2b550b209c9f6302_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:e06c4933f2806bfab0f36ccdc159675e5fe2a6a084f98065787d304d5df3b7f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:055b352bfb76de2eba0b9f0d1a6bca199c6e913e8e95879e991c5fd22095c677_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:16e31b5411f5f1924cbcf851f1b0463302a34c31c5c515220923f7a2050c18e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5909f73afae46cf2ad00a9a6f1c38d38acc3ab00a0b97ca419110492d7bcab7d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:dbfe981d5b05078eb1158624dfe2f0651cad81b92aafbc671cb6470b49bbb89f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:3b166e5b5529c407c2f8e372414d043fc617965696c5a869fcadfde2d14d716d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d3f6483b465851cbb520810069a18136af80ccdf79fc1ea80ddb4687ce685aca_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:d7d33c165c3d0cc0e4924e8c8d34bfbd1d72e2aea301e53e4b37b712e94c06e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:de5e8cdb75cc79630290f83ff179057d25bfc11d37816c57b6f66563eb3a2732_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:24abe1e6ee078487af8ee8bdd5dbc267c18882078a7987fbd63728dc2b65bb75_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:552d01e66c6b2fe59104b8a9f3e1e58fdcd7b4d4cd63db42883ceb119ec0ef25_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5c00c3c5e7e106cd6527cec39e5c3fba990d1986bfdcb691b866db80d59e5f82_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:bed1aeb4f58c045644650615230eaee03336daf78d9342022786c12f29da670d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3b213ee7154fd814e8a904c3a161bc16ca7419163e8132ccabab76821c33b310_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:721efd9cae7cd4b43c6bd498064a6c427fa32d0ba848f8b0bf7670afd662bb18_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8f5f0f56604ecf94768262496ba1e29073e87ec16aa8f434674b308bbd00678b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d78b1c13b0ef255bce1e19973bcbef04d40c517301959a7f23d23613a95c1db0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:650f0e2357f8d302f10ee0a628868f985c5a8c8a4e6af9e6793a9051b33205b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d5a3ff1bae3686aff1781b5f5f9e1a7966962b88a1e84ab4eb62751aa835bb78_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:db30f78340370f9da03fdee73445b72160c35d83f44f708d3a62c9dc8e88bd46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:e88ead481c18a7b6de8ba7f609a1782e45e1ce85f2a158f259bbe68a9db261b5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:0bdbde169ecd68d82366f3d04f947f73715797fae5c3c4561e7bda5b5080dc3f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1d45937273065c5cdeea502fa388172651fef5a607db33ea72c49f2a50b29b94_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a562490081e5dfc0fea7306931e2dab3fbfdf76cd83768b7a43ea556aebfe4f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dea6dd04d50bc97f9e61330140f61a7370e31e474c26b3526e18b0ae8ad56c41_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6ff785742b50af7f2a15c1dd6f38eb69e9a1a20cb4bd635aacc57a5557dd1b4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d0e6151117374aa602349bd1028175b94eea6f8386832df622d56715cbcb675d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e8fea02d42c9a9b8e9ad7642d9f08d705eb6e4b3e3681cbf6281c7b8b3244ca2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ecac534bb32ddc645101f6565521b08fde95cbf0eb2b9c6b896c83ba23e8b6bd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:55e0877d1949d009d71821f6779aa9ee90484fcccb820d53bf53b90f7d412636_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:775af20537e6f4c84985145f44ad1ae2d5530ae06859c2549d1d85a2e4ac54ff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:a1b02b9608eadb4388dc13fb5ae55fc6ad64788f93186872c133a0ff1f5ab487_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b5d732e8d36668226255dbfeb389994104d83ef2be461079b66557bb20d799f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:2e983c69ea6e29aca4f36596a0c697c2935dd1deb08a4d3546aaccb4e3d78ae1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:4ae2494b702a6c7f68a65ea730f6df3253ffe78f2d178b0714fb6ec04cba5cc9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:b1133f78075f3364ab85142cf6c8457820e2e1f31a5b0750585ee1adc1285ba6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d41fc7e76000bc1b4016bf10e86fec44f551b127e17997fa4bb13420219fb3f1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:25acdc169b3860a10f46dea8b842626acc639aec950ca7a9339e96a2bf1ed7e1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:453bea2d5f94523a88f37acac9edd0a8d921bf79409a260386fa458cb18d13b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a70ced1330a4e7a0a7b81bf6b19b3346ad5bb6e26398c7f0577994d48712b2ad_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:c2a6ad45ab46c0238429cd0ab59bf169ff368bf68750a011f481208e56fa0268_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:33afbf29add637cae8478b8e0ef6b3b465e4ee53b000467ec34fb1f3a04615af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:8056eca30416b0b93270f6c92d0fdbe4f1cfbbd6258e27a746cc379a86b6b8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a06dfb4e75cc6b0edd836cd59035095135503f35a7cbc710ed7b0e447fe256f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:a820784083ee32f544efc474c7ded798916d1f077ddb9c3f4461de48747f4c73_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:0ab4e11886c642fbcf7560f780abf9046b73dcfd7dc9cb0f086d9e62f87fb271_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1283ae9261afb1293b597a8da40611cdc1980b1e403de5d16669c5b7d2527dc7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:89ec13946e699f6589c3d235cb515b92ff48d1d5fae8e7892279b64d41b74511_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d08403f8114128e063826ee0cb3324bba9f027d7b2feeb6f7c826c9c4925579f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:2aa0baab0fca2bf6877260b871b3079ad96c37034e6f3d0a45cea4118cca230a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7f886a3942b81b3318e288602c88de802278bb77c5d11ba758f1d86f2f028abf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:940d02c46f06fa92818dffd1842010b652856e09cebdec33e0f0e1a1e9b1b5a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:cac82b041210a06cefe512e89c5755e972f6e125c69a0dae87e454e259a3c08c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:12466469754c88d41872c1a061c1eb4349cf565b5fb32db651f3639aff2df67c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:af5fca0ab8a1f5374caea5b38486cc97c2be9d884a55542faeaced44a4a7320b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ad60c87d6e05b51b5351d2490538c757547b43a679256052b600e3fe8e80a594_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e8372026bbc873c38ffc2c7df35183727596993dde5663ec27a2c2fe401e04f1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:736b406850af746470b1bd5dbc61fc4b166133e9cb50aa528dc1210b2002d469_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:a73525cbcab817d0472f544883106a359b9079eeb1d8628d8b0185e450662361_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:84664067a273cdadce55bb8531916e8d8edc7936bcc57bc2dd1ecf57adb08c06_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:9a006a111625f85305fbf3dfcd9a62592357a6a282a1c8ea1edbc48b2ef7db05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:adb84daa38497eef3d89a9b42fbb22fc04e94f708db4f1f02de21dbf099ef788_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f81616fe8dcd6b63df308c58bc1b696f9b3c488ebdfe00d7985026b10d083de9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:07efac034de568e79f6ecf97f924fd5ce7104e9259d90747cc0fd3e0a7bf4116_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0bc9b2b997bdf9bd285382823ebb9806502664976c2dd7e7b0d111df7717e77d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:165fc1e58447c7bc9febc3ebc74f90096c6e48986789d4e66ff6443f1d30d024_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:f516ff3ac172cc08e88f25a0531a3784ed212897dbe0b05e04dece7d62eb977a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0d455e21bddb7ecd4c5b8f077ea96f046ba3183d17e3755ae95f8cd112a81179_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:3d291642757ab1bc56aa6bf8b31b383a1867b06fda7ec093daf361e3bb082624_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:91c0c9cf474e9dd3b7dfab43e3e651afcf950c183a51321a586d5e98e3b8dc82_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ffcd35b620a75ac1d121b826b37ff71f5006684d9222c440785f06fdafef5531_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:56c2e0f91eb13a89c48ee5ebeaecfaf87dcef3f85bf7f7fab37e3cc6c9b2dd10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:84e22659ec76ea69dd31d0c6bdb39b752d4e525e7425d3ad282c3ba5c16c19c9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:a3669bd8567383f9e15755e7640b5af4e796ce1d6bec3b6f1139645b656f425d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ac7eed19416dd31a76ce8139a4c1cc16f2201b1dbb1c884dbd20fc5a965b82a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:44020a87c575f01d876bcd559d0b37bcba2f5bb4337a4f0f40d65196a407910c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7272870ff2a94fd3c026f3c3a4e985a2b2eb5c47dedebc00f2cc25a496ec3e90_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:d5e64fad675db5b1a7fe03720a35eef4ef6497e49e928b7cb0a38ddd6fa9187a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f4d0e3f2751dad9fab70a9080102f7c0e82a784e516f993e1e84a8561c33204f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:174b142475167275c428eec2892e91ba557a1783a128749b9516911a366ef54e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:52fac1bee10c7847bcf6f7dc9f027764a183d462e46678b5b9aaac9611cfcec0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:874a6c39ad36a55efafc0b690d17aa4eba8df8f30831a5315a198e692e405592_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:af2f5f615c4e9da63b09f2b9f52ef632dc76793f51730ee67a96d5e99118d552_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:0867d20104c147d58a3e119c8eccd725d2b5311bc563cb4030c18714e085c80c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:12bf752f4f8f0929752fee39067bab20d3af32f9d767e0eeed2cee9dc9cdf774_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3f0993acf410b536a4c2be24d23afedeaa6d4b02a8055100cddc37443a619cf3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d745b47be21fc6b98e8b1830c34e951271362105d32704cac1b1a796abddecc4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6c539e26ca346ca83a4c024a374f3874e858602b71794a1709b8a08356744b46_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:94e6571b95628469dd361c3ae5bf4bb88bdcf68636c0a7a6f007a19e32216514_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:978722d03bd0e1eb78e35c188516d960ed81c8b47a66e77ec7ea465634e44536_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:f270599d2857493437426bb7ba58ecdeb0933b244b0b5e81d70be8f06c734c4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:07f5c5ba5313539cdea53ec438fcc97c698df8284bba4ddfc6c7af4403873362_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b93c3b58e03d6fbfd8d73f6f0966ef5d616c0da0776f516ec826e4f5e0d4bf1f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:f5aa864ac9d9a3e5c0a412e9bf6e22756f6232713e14fe4194f61b1a1c1ad52c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:fa3603fc128be2cead70ffb3b0b0b5c9520f7826bd46863a86b1853e62a998f2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:382e4343f73dba48761c24841e45aabdf84a7f4de996be6515d8ee7c3e728c78_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:840f25f86e1850623e2929597e072219c2119b08acee3b81e8c7aed1b92fcb64_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:8f9eddba528ca5e8cc40717ae9f30253c955be657f8475a1c4da66c257bd1729_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:ac7a2fce2be014fdc4208e98abe50329d0af9b7f7af98fd27e611751a413b4e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5ad568a42fb0d0f2b78702929b75ab8fbb41937a853b4344ca990776f48ff85c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:821c5edd5f5ea9fddd168482dc437c6eec19231d95854abfbf1bcb150cfe618a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:8932f2fc5e81fd7165d50432ba8994896c9ac8b323d5cc798872c1770133eceb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df49ea17391c34a0eadacecb37c7e00552af8aca3ebb648f28f3f805fb79495a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:58e02752411f5bc061c8dd98bc7dfeb17780ef24ba8c65e590e4d6c5213c267f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1c95fad91fbfc41da5d6871fb0a3c07d20652b5fce3f010505afe0d24c1977a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d6bfcd46424e1719490ce37bff728ea278eaf589e052a90b3fb30a9110aaa298_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:ef555584c97654b76391f8e4d31bf0200fa82222b3197ef928f306c8d70f4881_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:520b43e0497fde1deef41e5f9e51448fde032769f433980802097e1e4216fb6e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:de2a25058c3aaa6f98e80870aca51d8bfd16354eb2da93e7498fc804825babb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:fba545c7b9accb5be03b9bf1931c086a8da8592e3ddc9b5a9ad6d798229314b9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12645a5f47e54e3bf3f0b0863c44b938be5c42b22f695faf62c8d918cddb03ac_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:529d46e40fd5f6de98cb72dd8704068e3b9baf4d3bdf91feb9c19139bd74c652_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:701028c843123a3e4250731e216eceb647411ce685517383b9a62b5af21c10b0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1b7392f3cadb8ca07f10d5681fa33f6dfe61f895e4a8a1874bdd5aab3543f67d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:693c125a5f2f67364d8bdc1a5e7abe959dd46898e7f46d5b3756746cf598e135_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:93f4a34af9c198e4baa449f7ce0e1e0936358afc725eafc3b8118df3d92d2b44_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0e4dde634359042b67bcc5224afeef951459167cb8f36cb6f262719308f8ae42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:344860750b6a6e567bb1475f68d18b19d6f79438b767c351c850d082648aa5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:efe1a0fb3394a117206bb1837b63a0ee828ab5b5d30dd7c94aa88afa04c94c2c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:afb18f280c123c44f1349b80bcab24c86d8933795a0577deb13bb651019d6a92_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c865ec93173fecc00d843737009627ba137b7cabcf8337ea7837eb9bd993a601_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d172695ad3dcae4be122b50a27f14c6cb0e71357868ebdd13336cb7315122fd8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:d4a1f393e7762a2c7ff12fd634077f5bc5bdd224d7791eb7929d26cd16047dee_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:01050a4179625f00151e478a0571e64120ac6221fdbf32c969a18ae9872c9574_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7639b8403341003825286c0fd45ab34d815585e8f4b5b4d1a424ccfc0292e017_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:bd76fd61510b4714518ec5191e315f83feb1f47402e32602b061a0fc09641c9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:e53bc4c7a3fa7103778bd3f7bdc4b6be4b5e6a8450e38eee246caa75d9f8f44d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:62414e285f1e4de212e28bd90e5eeb60730324d54a317434565bad8891435168_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:77dc7d2bcb0cb6289f6d8c3c3f4ad3c01b9e24b4f6969ac666a888ecc8a29981_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7cbc05eb0a0d3210e378d08d879933d905565224d9a6fc00e3bd1a9ad6782557_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d195bea4ac0b3ee073418a3674535525622d9b492bcd1fb0448b8ae52ba262b1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1440138d54ba0f09184f96cb79557548c3c9f19089bc813f433de28654cd74ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:203e3cf52680caad6f8fec2ca1c7c87d45205ebcb9e816fb188e74a5bc7496ef_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:4ef6d0725b69e2867c44e7d7ac57c820b759a45c491997210fc38b346d7f033d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:b1ae4f6e3577edd7fc9f6595168857af7fd9c08aadbca1642c2f9248205b8c42_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:2e494676f33f47eb13ce2e3675c8e7a3871d5d1b73a59b71623caba05364196b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c8183043eac4cff3a7c17a9de76a4c9df725db694f411b19dd64923d1de68551_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7944fe378873f5d5268ff872c52ca08908af41b7efa03a7032363c11af633da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:fc53a478ba64c0557ef8de93faf1320baab34d4bca5f50bc8f74d4a8d3a86890_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a5e04dd92dd9bca8344f741151a5756e28fdd197e2aae26c13caf2867ee6ff76_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:c16e427a9ffa0ef24fd07e6a21ff78a63313d5274eb3b1180f7c29cd1a9d11b7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:31630cb5049add8b683fc6f3de6cc20ffc530b72d45daedb84cfe62bec754591_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:89a876583624410a9d79c1cf83d94a9a7c0dfbd3ad70228ea985e45b2ccee9f7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:dd8a443d71a973e30574016ce343c19edc1872c63ed46b5f7023d304b9c4edcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:63a52e5f035913f64e82ae6a617273abae9ee0729316d26ed5d4182ca0f50d11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:754310c0f797038ef14c3ef9ecd934b6ffaac6ca60b755894212854289b9f405_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:49c4861778e7bc4f5738ff0f5cd5c542e9fe75c33057a4a0806b03ac75d76ca7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ce8e1af1e3f7d331be7a366560b517e1fc27f83f1382ca6a69a1d9893f260fda_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:3478a4d3a1acaba3cfb3f1040320798b9d0b419a66b07267965d4ab974a3b440_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5db06d085c31aafb3f02c2c373b2de6d93c5fde72dae55d6de90f44b49b5770e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:634d04ee67f3a521e7b3cde560084491908f32aef4a89a1bb7d3aa0ae119927b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:7683407dca1a355e731e277631b3d8522a3f84f1de664829c3b15db39b1f1ca2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4ef1395e47e1898bc84155ed4b4e3e4c72d08e4e7f2d19d9530d889fe0ef6b26_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:63631119f3411bf77ea1f622d77ef96434d80815531b046efe5b297dd5bbfffa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:7ee73740b3264500f062e3863e42fbd98dc3895f17294450fc90d992d2108d49_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:db28768861f567200cc79639eb01ce8e18fe5cb8a768cc01d3e23bda55431c75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:09ebbcea16169b9ac863167c0e7f953717e92f75fc4c4e2bffa0eacf84519907_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3118a7eeb28d8388a06731c7bcdb5eba4a942b9c91a84e595ec0fb49a55bcb11_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3bacdd4e5501902865eb31e884646418bfb5fae90593e96b06ac0b7c3cc1cedf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:852556f6eb96442354f0695d6630e2798e19e31a5ada2ef01e3ca2571a4a40c0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:59ae16e7b7d2bc20f34b8bd1dcd7cf8d8d7c201b0f78e3165b11a592d1b08597_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:8b68cda23f470048944c164b84fe27a5fb6a43fe739537383444c28cae451035_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:23c8ed7995abda7f87fe4031843205f3a99a0c57508c6218291762a60907f5f2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:cca7e231ac39da3a210859c6280ded3a4687620493e3a3e0164a403271537b6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:054a0d12730620c46ee6209bc9932909f653d0b7f796682a0f798ab3ac3b3641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3281b909de7dfc5bf3c746e3e8ab05fec49fc8aa83dc8156e616a59c41ee923c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d5efd9212ed22c89067691796443fab0b28bfc31cea94bbe636a4759f2e88521_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:e0a34a88a67409e2b1cb243874cadd3de1c9c56a54ac225dc860cd89a635bd97_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:275f90da2f77f60d0a77e00936734ffcb5099fc8b5662e03de49d807a7632f6d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:833072794acb03eaf053f30b6bcfeef95cf1836ad5149fd97f34f3546a2e9f6e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:893dd8fc24cb10db16620d8feae352929b0dbb797f02fd80f025fdc7c78bf53d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c9ba070e466a5123790067569bcb909e291f3b2264af0aa152372fff9e64f82d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:6f50d9406911e5fbe310c94dc60829891609934e64983339b5f66432a20864c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8b4ce896da4126dfda544da09d04f010c0e9b25bdab6557adbab8d095905d535_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:997a24c33d3ae9914f3694b3a8cd8af50137ea48296c322b56dca53b4dcd1fcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:f80cee2f47779e24e07ee475d09fc697a4446a07f9eebb0813a7119eb0bda36d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7aa46141209fdb1090d90f00d1a7753f31b9224e080b8c669883901846b32ca4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0dfec857ddadf777961a71d8dd545cc798b921e083c8b5156ca7423f8ad8a2f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a5c047afb2066ca8740286ad2af8e1271ef78c2e5df73ed2365f586d6a101b33_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dcda877c69d0398e4744f1b7a2ed81986ccdfdb6f4da7fba75f29fead8b10f34_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:1ff4a8a6440dd4d97adc3273253da14e081083c978edb5fcd05dea33d4cc888a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2aaba77958b12e834f6418338a21b839a95c21ac5568a53b5f792553db772e6c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e5753a6fa47d5a753be2eb3b7a46cee0bc156b0e52bf75e4f192c0ddb3fdef47_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ed802f61197fbcc0f1a8a916612ab33363e0e1866ae70d03df92469a2c356ea6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:120c1ccd64bca8bfff4b46d14f78038594a28f6d58c585b1215afd76c23c7ad5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:52dcfdc6c5f219f414fa0775b70e34118b319897b0772931e0861623db7bde86_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:6b259bed5dc046510b7c3305f6abf86e4543a9ec5091505f92f573536e9f049f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:bc0dd85538edc7a80adc0fc9fc4e02051e7b09480250b5328a6b70251875b943_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:3f9151da4d025555f4c0183a0ce07a2d0084beeafdc9f3f1e87a603053ef9089_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:919fe76dee99d772b668b57645779a63e1c3b7f7f40fe79175c27ae6d7e261db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e19a080b5fe10b67fe48c28014879abbc87cf5077c32c003fddd171d06bb370f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:f7708a1c1e0d4083c7f0b9e8d8704b91a4c823dc9435d5d3e986372f305e1fe4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:27bd19fa0c1eb00c55120e22b21eaab50f0eb75a84910e9d8a2fd3b5fd1c7dc2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:52c4215a49207586cb3f33bd1d35aeda857d31d34c80cbfffba02ba8c448c8a6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:62e5cb5ba2d92bc29a2087c9de9fed7978d4c5ffe07b0afb479eac93519c6df5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:68aa837b6a3bd95232abd62ecae3b040f2a7a72ced626c784c4062c2f28a6e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:9872321279ec2d108191f1f7e1764551e9c7099de51f595627db068a66fc4f8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a06cb8024ab06fbdee295afe99cd294f6e05c36dd490545600967b8ff12e3391_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1d3a2d2ae27d869506d3f027ebb43f0ca64451cbb635c4c412c85129025728c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c20a4f14ad0eecc3f88eda36bd65f1f390c6977a7ad5ed69e87969556b9d8cc7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64247ff135642a32fb59a62cdcaae5f28085ef0578916b4ab2c90d31e67848f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:e0cf29f62ec486451053c661388f9a3a12ba42b84899b687fb3486666a42536b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:efc289b0278fc84c571d7adf9e9ee1f8b149c5d832cbf416803435e89ee0a531_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:47ac82d0289751c8c7e41da07173dd61836e606101a20b598c00da1cd1fc9077_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:953b8ff978f6523f4578a469d23dba6536d49a141b4e3729b059feb6d79a858b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ee224daca08de920de240b684ebc23a4da50d60130d9e205e88c904c8c755343_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f267111aa2951d22dd6a41c7362afc22454e365325b7a016d213505b7dad74f8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0ed3d751161fa47b7ed4bd2ec2c5bfff8ac5ffae0df22dd9a741cc64bbe2939d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:48bbecc83208a8895cee2c2e8ec677f59a688e02705a677cde4e9a8a52398d1b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:89ac959e411430e4910919132f95452d1142a45fc5c67088f15cf5bad8982165_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:db55fb30b025bb573317f113897a7bfa0dc729aa684dcdb0ac3066356b339bc9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:285f19a6dcffb48d4e6f6d3bfb44722f1828bfb2099a8736f2fc08cdd1481175_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:521f2693c3073993771af37d65723ced3ac83c7438d6ff35425ca5f663101676_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d1883837f227ea4b98d2442b46e5c07a9eeae549e13cd778f7c9e78494b53911_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f1f601e3a4951748fbf030083febf57aad02568058889b0122c8872e2d68d70b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:34298ddfd123342b87d28c047cb4a8c1b25b07352bfed57aefffdd92a7058b6f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:4a56a0984384548771e1c8fa5a4a8efe93f472cdf2b64b01d6049b2f9187a684_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6765cf3c0f8d395307ae57019cda7e2aeee976ec060eea8a47703db0b18532df_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8a8377100458d05864c6521e4b7550df73b5c3d9cade518067d5741fa9d02292_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:09ad41d3ddb9aba6d649812d1e48433f5778b1cd9d5e0e1466b34e6516b864e1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:7b3a100ca1bce2bced0306ec9d4b90a4dfe8596c5bdf51799aa3a7a1ef36fef3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ace3b3b02c33261287a32253dd1c027769743797317ac4259c9102e0b3db6603_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d289ef93e6e179405cae0db5309865f76cefababf168006abf09fc3a51a32bcc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:20052a45d551f7e988cc0c38baa38f146df4d9d741ac71f17498d8ddc44a1beb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:55409e5fb153973038a15985a332681f4e3e41126f84b6a355c47314c76bdf2e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c143caae15fb4249757018e05ac8dab9abb20f405977cb41468ce6a8049c4342_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c5d456d739d5791e51544a45309ca3b64f763cb49632bc638950fbfc041b4193_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:3ab4203333e071978d85f0f44f7342811d898cc388326db60afacd2395f8340e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5a97ef5bfe0456bc1528f2a3df7736c506e11cb61de5c41a1daf22162150b345_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:94fd7b1b27954fb59c11a010f4b8ce0a3377b38bfed7ffb20873a2f7a499f8bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a936c0970ab66789c10a64cf57ae76bcab0f2f16b6b50e713373066f73d535b5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:34fb12d4fbb5f9b29b1b58e19b1c1b0eb27121ef80edc50a59e431a4e94638c9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bedcb032aa7325e5bbff014f251d5ad91fff9dcdaf84a95e61e4fc4198f22f79_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d10ffca12372666b239a9fcde83a4b0da6c3f37fede3e47272bbdf9ebd2f0d91_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5284bc6a4ff57ceca1c00af4ed0c46fd341f1e2a28b4f13b210ed327a25ebd6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2a7aeb3139633e2014d99631287cce239d73af61e541f218f45a009fc151d8d8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3afe2f3016ac55bd947c98d1e4b957969357aed54423ca2f35955eac8639116f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6d7572f71fc31d580d355bc6ebf8eaa54e4285c53c7e0e418a7495a0fb8d37a6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d2236c41a640de0aedb4eb2f1ef143793288329513ec0911bc37ba688857701f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7688c4b2355532cddd9b9d314d105127c494990e7079407d2f43e578610971ad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:91ee195223233fdaa6d83ddbc8e1dc33bc7811e4f1e6ec9f5ddf325f560ec38d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:c866308d315beaa691b25dfed4be0cace44628e0799527e9ca11d14165437d98_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:dfe468dbed566f02ea0ed9b5ed5565f40a00d03a344d2a230b0a0a83c783493b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08710b0caf6f4bc16e72a89f596f33c8c38ba7742d0f1ee552336f9acc7f222e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:1491efe6870dae8caca1a78c9c96f8b4b2956db3bd5eaa6bde59ee996506bfb8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:2a0f11f0a1063e3ca7b8b04693ebe979e9953736d37f3dc3a91fa5c9912d79d4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:813fdba989d7b5a4aad5e9ce5bf5285b0e65745375dbdef899786d571c001b77_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0db523e5a7a6420d94d5d302b90c798737eb78f99cde3b887d3c3866e195b9bf_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:18b7e5875aaad6e0bb8b12fa303ad6295bf3968daeaed2104f0f4ec3122446df_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:80c4e60cb2ab82621ef12774841d39e6ece9e9671114afd0d19b188dd7746d81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c20dd339ba44e18a505db8bf726e2db8b6a764f7bfcd9e0d63d627d69c2378fe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:528f1228123298362d5787e862306cc2605f3eb31fdedfd0deea7f3cdffb77cc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:75b18dbc6fef40173ab0c85ff4f9c4111e29afa10593ef9141d589f88b418826_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:e8147c001326caf53531a8917f91991b5ca05f31d30adba78a03539a6568009c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:fb390f9eeb4853d9a20c9bf02ac10e099238e94084230bb532029be4c88b7ac6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3dc8fa50d17a5074f03d58eb00467e45e6d74f6c5293bc57ebb8c4feb4323eb9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:51941876bbb8070423c00e3699bb193343e963358dcae8cc6acda94395edc5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:9087e6df82220f673440368a5e81c5a0f3eb5e36cccc61cb40fcb56d92cfcadb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e3740bfa7355589784350a9dafc10849d32f1273327387b3b3c6389ba1e26dba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:05f5bc9410d9859f1bbc1def6e1c74fd47781faf1ef26633f61b5d8f09ce8d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e14d01db3abe1412de6cbd8dbd7d3598d5ba7d2af2f5e55a7ca625aaf8a9155_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:db0bf5b79be48f69d411611bfa74a9b1cdfe875b453a81ec5ea72a962c27978e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:ddbaa3a482cf17a156f6955ec155eace13126ae83217c36c03eb2b826e7c4ff0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:02ce1779315733c6039fbd9f711d6c75da89fcfd4d6ac8e485d7aba30882b3ff_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:d29e550f223f287e258aa15ac71ec87cbd24e9d6888f22d82aede80b7902765e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1d43b37d6ee7556d8afe22fb33c7c9ab7a1ff5b2b38d6e18f762ba759015f87a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4e627ea7097e36d07d109f50212809b6477070750c0bfff14f3fe9d1d7ca29f4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:63e60a076755fec73f95d2f5ee948a50d895b69cd327296ac0925e301f5b7e4d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9028745ca618eda612fa2960f0327f19fb689eb36762515bfd71bb2efab0a0a3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:2dc50c3c453049a1e81e8cc4559147a4fd4a3a6a9c140865f82bf628f2a45b83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:734c982a6159e5c4077a12b1a0f72ad992b70f965873ea591228172e6265263f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b2a21551ad4c66e622ccd865529356920dc4524bfa4595e08a99e0e95438823d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:d3133ccf5290a245274c030f53c63dfa74d6e04bffa684808fc1815a07ebfa13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6f399ee5f4634353047061fddcb9092dccead96c6884863253b913dab93c2e15_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9176cf7f1c5ccd82d82dc1a8ea47c2bd34e2ddb54d750cbacf7735a04ed6a221_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:dc6f5e144468283ba4d04ccc155f9e483d085dc2f1b78992e5fcfea42db77bcd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e5216672e4e265b01384ed2dcd722b4a166490d66e19aaec457aca55c7e3dbd6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:4ca8bbfe3586672e1de22cdce9466b37aa0e11c5e9d94ea8da271aa5cad3df47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:57488300ca265dfcad9bcc1a2861062d8b82c2b80e8b21cc3ed766fd187402db_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:660006e5e6826b13ea6d73fce4fe672d1f67479c44ed65dee68119369eba3c75_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:91b8003dab0652f1a06de50435ca08d6f6366e6e8e7e10a9743542b577728b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:0017d40e539a56e2ddbf4a97b0cd94825ad5dbc9cd79e1a7e058bb0b11afec29_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:7a71babc3307efe03b8bb3f3cc5f9159a4868c215df70d7a78ba37b91294649c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8403ecd148b8f0aa7f1156fc1676307753967ae68a69948af7c3987de8178959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a4e02776f7b5a66943bad040650f4dc9e865f05a0911f4f9aba975c4b30ef517_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5d3d3cbbc28f59a6aefb1e54986e084ce49b69867d100e9b7a8eba17b764304a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5fe1d81ec73517468488ed1a60331a78733ce2fed50f3930b4efbcdff5884326_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:94a7a56873cf0e075740a1db93972f2b2505e7bc082f2faf2d3a6badbb52b08e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:d1e737deb52f4f124e34889df5ee2a787db0ee13ef86842f415d5c18ff70498d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:0c8b3d458f0968682b8604cad6ddf02b1135b99c4682090dc78d9b273084a0ab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8f02a07e0928906a1c075fc3510f3750c679361bb9e0fc7504610eb2b230a092_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9b174760063eedf3197e5664994fdc21f85cbc3be8bd1329142fb9e88103b717_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:e97049e759fd58cb6a2c8dc5b78df8dab7139f8868b1461a3946cf187b824f55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:17b700ef898288bc081220792a7a95f4f1852338d3d08dff19ea02cc9d957239_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:675083e881008c57ea9fe8e73db8034a66a3f439c6fc1862db09503f311caef8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b94730e4b9e9de7c0a99431f90b42a5368aa0da03869eb8a71dfc92dce27ba7c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c5c12b41cdbcc18c98ec1632a0c9aec007a9672a742fcfe89a5b104160feb698_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2c51c07f11fa78b44eb528339da6291d1c660451a0c9774ad7bf8d8ea7744ee3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:4d7e15ae24207bd06663f5c9d55564e220bef28ef150f62d2e9622f569490acf_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5a51836c3306ed97366bc3c8f24a8f9e880628d1feb98854eb5dd10800bfae83_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:8231352f700a733b13de64913738e0de1b89be5046736077f7300c21fb778aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:121025c1dfa4bb1138150adc737d7cf12e69ce21f10690ad8d740c1c1f2dde4b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2c02ec1e4b586a812cddae6ea43cf42a6b9742d062fc12c18c2414bc48b5b96e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:4c94c8afa17ce2348d6198c2914e9257ac9510455c521f6539ab17877b6fd974_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:70c7beb1cdbcba3eb4fb83fafaf740145b81d510ef56d5ac59ea4bbbfbfebc00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:83efb138b8bd5084f7dbeb8a59fe1ecc2680a20d5853b7a15f47e1f87929fd9e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:bd63fc568a9ceddc67809e2271de8ef4d57ac8af283861a601547a6b9da2dda2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d0d429e4a3a0a9f015725dd965d4317e67c72b3fd846ef4b04c20ada4d067eef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ecc47300fa59bdd3970f0baf030a75e1fe5862d2470756cf32c389b1eb89152a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:53bfb1dd8b4f99a0252bfdad2c65960877a4e722f5ae88591eb87d6800d1d98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:64fcb6ccdaa30c4e06cc91a40273c6be01958ca2c048bd39d8a87e8c09fa7d55_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:bd7e96fa5e3db517c91323142b8258555f04d93dc0f164b6e83249dc0cd1b416_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e5d77db3010b3e1d31e14a0bafb1a5e5ca62dc03b7b0bd2097b198f6be6ee442_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0488437dcc9ca866c5b96278686ea20b5732f8e8038af90889fadcf90f1082fc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:d1bd0363eb8c21c0123522b814b140a7595a459c7c286220b4b6fb0b9886a115_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:e45c7964c5a89fbb1a8c6da3a905e2caacbbf8c433b0d56d1b260bba151b3e93_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f52e1ea0175eb2af0a63311dc0b8acc1771c53a7668108d7bb7abf2b814e37e5_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:0043c8e63c3bcf98e33fda7e5f532143b4c8fdbce690606bf469e932d8552062_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:465c03f230a374b6885874b775473275fe8866f61856fb71a8e2bfc37b712ea2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c730b4b9a52549bb6204deba37e28ee3946758bc86f27c1b886188ba0f164fc7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f50ed1d01f799f00ce20f210b95774f2dffe7137757ecf86544c71a9f621f402_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:56015af081c97939fa71d978d511ecc0e93ea6ea89640ae846645121531a4a86_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:82a97e06294f2bbad05dd72f91d692449eb4094ce1edda7d651e2f1833018faf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8faf68e17b482f07fd1a4ae8ef292fd44fe9de5369d5129c3945acb56b5c2f0c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ae7b169bcaae3569a946c84d88d0ca7b42b530b475c4afc4096d5db36aff9c52_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:02335c6538b4fb15d9d4e2a831b9810db42f8b8fdd75cc6237534356cd1b68e4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:84a9daad04b0ef97a77e258c1b490c9a9c1ca502079513184e43145467eb1169_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:85c84e6100ea0c4d783b44a085cdda8be9b580b073ab7b191a70ad3c14641f9c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:eef5b8e84cce56cf085ed8f8a2ca544505242606d44691b6d0beced7c942bf9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:148d9d31314b0ca3dd2667aadf51d9a65cc88cd872d21d29e4c85fe25cbf6410_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:87bd671167583b8f46388c7e5853509fc9c20439c1b5f57544117fc9e1b1b5b1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:dacaed2c85c23db8c8bf2b754b958ac8990a0b0e917e4885b39ed62d08061fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ec4ca8db357714672338a773cdfac91101641ac1ea56905a5dba39d13e8c96e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:1e01dcb349b9e3afa77e9c217b2f20dd7c9c98f7b00be3852166c7d676dc1c58_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a453727eb7aad288301bdce304da23202950098592114e1c56e893828b7cb2a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7e9f67b6e1c87741c5d56a3e95af004dcfb6d6c9cb4267b0ad4dd1aec7e9cb1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d9f12bee214359955f20c9b4c0218febc8868cd47405b362dcc6ab05dfa573d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:36d864188a182dab0197f06376c993fd661689e516dfec4c25f9064eef6db0a2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:38481cddbac83c19b28845b99fec4f4d16d46aca014ab18653c5e7fd42d7dc9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6c5798afafe96f9c1de300cd8b709030655d1c92d03394b069b3f4100a0a4334_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:dc248c02585e41245eb8e16fea646a6f1013f5257f5152dab0fd4634073fe15d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:142deb80cb8918201dfc20e0e86c5a70e704eb589681db3e019d0eed0a8bbf1b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ff7c22adb1ce27c0944f94a4994940aa6af3c4db60cf184d0865753e0c18ddcf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:09664db13d4f9022495031effd53a137ebbddc0e61fec151a26e565a02a5bf40_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b480de86de7566594ff61c147bcf0a6e8d5f2ac52ca37a2ecc32909e02850c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:177b77bf798f3ae19e2b67467ec324e2352c47a2fa4f803c852cb7d5514a2b80_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:5587380364defb07d81f5bb93851d7d726780e03f561cc5c4010d6cc4e237079_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:503c53ef4cda2a77d57eb611638334ecfbbe08f384e01084a0f2004aceccfd5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:ccdfd936b1e904b115efeef06cfb3c1b13ec6fdf123cf87c9ad477ab47ea4d04_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:1f7ad22165ad761cdd5fbb7f037ad342f7b9a6f017b80ebc9775edd9bf7388d4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3ddfa7f1a01b1dbf4d2e999da0d536b8f3600e0143dde47fed1f6f2caf15a7bb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9aa910f86e4c953069c3e45f3c2db9702a8cafe753fdbed42e4c23f4837660ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2751c4e48572281043cc6468aa40d2b3a8a1eef5897cef386876fc08de5d791_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:00fa00533e4616bc63471ba4e127f163a2ce06bd8546dc3fcaf2465c6c511ef1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:65d4474ec56e4cae8542f01d54006ee1ccf15c8a467dd7f784f1df806507296a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:b1410e826283f79823ba6cdb76d666aed69449a847936c6c634593f31c9795b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f3e84cda9ee1fae57794b0c60a7b32373d8a95546116ddb326751e9df0d1706d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:059c0bb97591ea1d95bc42274c6748438e32ef113039c603cbf8171ba3dcd1a8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:8ff741a30a8c2059c8702290104db1f897853515bea3d054f5456a0faacd3e33_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:a523a7ac9b9119290e3f27ee0b0c7a5d3cc1d8f35ed4e7aadcd6968dba6c593c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:db230edf37a3285f5566a6f82b660ff3394caa80c95276bc3992a3f45a18a59e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:0dfe21d1f2ae4ad05af6aa896c0bd09417c03d2fa2e37a1cd3c7afe9d9f506b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ae88b0138b8b945b1ad071a5ac660e6479f3e2c1ec261d80a4d7d862e94df269_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:cece82ea1f03a889d37a2e4e1d81eca34a73857630b9874d05264c12ccfde18e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e518e75c0ec848497d5dbbbea1505cd3fa96387be78d326f44094d341d1aeb69_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4b9f7900c251da09ceb0c5e36e87322030e6fffb41da15b022e52f26967214a3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6bcd28e8610dada7b5ec2b6e14aecd9daf0542ac8528b8a1c9bec9b5c22e6791_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b4e19a3b757309f5ba13e3762e2449003ab93a1d3a950df031d0c5f88b338461_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3745f0a10aa35a13620960671ed4e2bace1c01f0440c1cf222aec37ebfcdd6e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:10a4a0d9d6cd4779461dc27ea5660513c80c4231267cd5d5cde84626a52d8d88_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:394f1ad167455a316ded12601110de58f0666917302eee8a2933932513aabd70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a0dda1cfb8ce56f6632c7dfc15f2d7c5251a666f7ff34fd78f45a064ed9fe8d4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d04c463caf59ab32c381bf6c88b9a55ad9a4934dab8cf66b1c80f3743edf28e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:674045072f2c791146899dca69772cbd83d8ea11305e024f697b0ecb2ecbd9e3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:80d008d72e748f6d1578f0583dcabb703ac8154853cffdfa6c332bf2db662da2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b6d9ea5fd88f25c46dfaa17deec8dec67f3241a4e52ffb5b598ef77af4437da9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e18f121c2a8578ab7a54b48347a671e8a1e315e85f894ef67b96161a490aca44_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1415356cad67eea021d0adef8b7f8ac8524035a4acc3ae7080f26f8f3f7cc959_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:2f7be9eb683b2d5c65aa64a28e11bae43475f5a828e8768d468bc24fa0bd4ec9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c0f27acad2634255d689355942e8c0d87f624c269eca0f11b1fe20b56b22294a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:dcad2bdd0764804f9dfad2a4f33eb2fc105ff8e4cc1d2ab31c58ef2903f7cea1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:02dae90a28e2afa83ab4b358378b616bad7c257b8f7d6cfa2830092b7d46fd18_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3e0b68fb323e91570216f90ae2c79cb4bd35149dd62c496c39ee8fb615b62888_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:a6517f52e257eefc0602db5e43fd946de57db13299d5077b1bdf872754253cb7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:d6c465af092548962fe617a677d3398c6164c398602d7575ec09533d9654f254_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:3a9586b7d44c57c683256faa5d9655285105844c74f728e4558c6295f73a3aad_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:5dbdf857d018b118ca8bae8eb52b2e117348804dae51da324225ac9d9a0bb141_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7dd0655af57c7f8d2aed0f88a4b02ff21d849bf9c8cce7fbf02aca7d322cdc12_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:abab20e995be8b61590ad7dfb8de0bbb7c7459ab5413987562332de2c9924924_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6f1fb02560c0dc83cb7ebbfba67370896f2d3b21835311fe5af23a06f4a45142_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:7a90eb33844a25785c95b0e7332991a373e0b70560f979e8e9d1554f9d021545_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:92ac319d44a3a3d8e68f29488cd75e71b42dbc98b5898f662131f8576178152b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b8c7d5e513d5205014f53f22fddd4ab5c54e62e62e5813459ea68afd789518d0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:788b2252987b1992fc9c5d855198aa50a67048cc4d0a1e28240953e5c1d9528b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:7a2a0066a38f2e52be47a1fec5c9a1ec458550d7ee6ca1232579b3fc98b7e9e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:939c609d5422bb4be66f482815c70b170d51ad2ea9bb0675a969bdaeff35e730_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a260d94b14808490a417d828423550eddd7b865035b631e9fcbb108d8eec6873_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:9f38e40a381edde4d367a6baf50d6159bab76aa34f7f932929a118960eb1b16c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:bec3f4da4ad493e8e34e5e1245338929dc916772222817e094fc0cb7c6370b88_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bc633a4e610855e6770d995552cc06e0a3ae6a5ed67c9739e809602a39bac20c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:899122e98ca8878beca6acadce6c862c6e6a4b44b0ef31aec9f868d4768a854b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:0816f94cceb27f34725d9c3f041003d61b9730a3c602b48b70782cf5b3887818_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:3d106f2995d5dd270eec34df31ac33f4a09dac0bd79bcd2031e9bdc35f20878a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:2c50f45d634218d512ed37008e62bf2718cc4275a9d944c845eb29bb19d0e700_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:429368ffc93f60dcb14116dd4a448f7688fabeb9a499b4b7c9c77018f4a31c3c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:48105c86a370a0ffd2c536e5ba75ea80fa94b09f2cfdf645a9fbbb62bdd1654c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8b9490cd4a69fece37aac8ced57235afc04a3389e16234c3a3f1d9a4f8a6d34b_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/sirupsen/logrus: github.com/sirupsen/logrus: Denial-of-Service due to large single-line payload"
}
]
}
RHSA-2026:0414
Vulnerability from csaf_redhat - Published: 2026-01-08 22:34 - Updated: 2026-02-11 05:08Notes
{
"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-02-11T05:08:00+00:00",
"generator": {
"date": "2026-02-11T05:08:00+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-02-11T05:08:00+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": "The \u0027zipfile\u0027 module would not check the validity of the ZIP64 End of\nCentral Directory (EOCD) Locator record offset value would not be used to\nlocate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be\nassumed to be the previous record in the ZIP archive. This could be abused\nto create ZIP archives that are handled differently by the \u0027zipfile\u0027 module\ncompared to other ZIP implementations.\n\n\nRemediation maintains this behavior, but checks that the offset specified\nin the ZIP64 EOCD Locator record matches the expected value.",
"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": "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 classify 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://github.com/libexpat/libexpat/blob/676a4c531ec768732fac215da9730b5f50fbd2bf/expat/Changes#L45-L74",
"url": "https://github.com/libexpat/libexpat/blob/676a4c531ec768732fac215da9730b5f50fbd2bf/expat/Changes#L45-L74"
},
{
"category": "external",
"summary": "https://github.com/libexpat/libexpat/issues/1018",
"url": "https://github.com/libexpat/libexpat/issues/1018"
},
{
"category": "external",
"summary": "https://github.com/libexpat/libexpat/pull/1034",
"url": "https://github.com/libexpat/libexpat/pull/1034"
},
{
"category": "external",
"summary": "https://issues.oss-fuzz.com/issues/439133977",
"url": "https://issues.oss-fuzz.com/issues/439133977"
}
],
"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": "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": "An issue was discovered in Django 4.2 before 4.2.25, 5.1 before 5.1.13, and 5.2 before 5.2.7. The django.utils.archive.extract() function, used by the \"startapp --template\" and \"startproject --template\" commands, allows 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": "ssh in OpenSSH before 10.1 allows control characters in usernames that originate from certain possibly untrusted sources, potentially leading to code execution when a ProxyCommand is used. The untrusted sources are the command line and %-sequence expansion of a configuration file. (A configuration file that provides a complete literal username is not categorized as an untrusted source.)",
"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": "ssh in OpenSSH before 10.1 allows the \u0027\\0\u0027 character in an ssh:// URI, potentially leading to code execution when a ProxyCommand is used.",
"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": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. From version 1.6.0 to before 1.6.51, 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. This issue has been patched in version 1.6.51.",
"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.",
"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": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. From version 1.6.0 to before 1.6.51, 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. This issue has been patched in version 1.6.51.",
"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": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. An Uncontrolled Recursion vulnerability in node-forge versions 1.3.1 and below enables remote, unauthenticated attackers to craft deep ASN.1 structures that trigger unbounded recursive parsing. This leads to a Denial-of-Service (DoS) via stack exhaustion when parsing untrusted DER inputs. This issue has been patched in version 1.3.2.",
"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": "LIBPNG is a reference library for use in applications that read, create, and manipulate PNG (Portable Network Graphics) raster image files. Prior to 1.6.52, an out-of-bounds read vulnerability 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. Upgrade to libpng 1.6.52 or later.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: LIBPNG out-of-bounds read in png_image_read_composite",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products as it affects libpng, a widely used library for processing PNG images. An out-of-bounds read can occur in libpng\u0027s simplified API when handling specially crafted PNG images with partial transparency and gamma correction. This could lead to information disclosure or application crashes in software that processes untrusted PNG files using affected versions of libpng.\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-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": "urllib3 is a user-friendly HTTP client library for Python. Starting in version 1.24 and prior to 2.6.0, the number of links in the decompression chain was unbounded allowing a malicious server to insert a virtually unlimited number of compression steps leading to high CPU usage and massive memory allocation for the decompressed data. This vulnerability is fixed in 2.6.0.",
"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:1552
Vulnerability from csaf_redhat - Published: 2026-02-04 10:50 - Updated: 2026-02-11 05:31Notes
{
"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-02-11T05:31:02+00:00",
"generator": {
"date": "2026-02-11T05:31:02+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-02-11T05:31:02+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:2350
Vulnerability from csaf_redhat - Published: 2026-02-09 15:50 - Updated: 2026-02-11 05:31Notes
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2350",
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12816",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66031",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66506",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-66564",
"url": "https://access.redhat.com/security/cve/CVE-2025-66564"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68428",
"url": "https://access.redhat.com/security/cve/CVE-2025-68428"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-68973",
"url": "https://access.redhat.com/security/cve/CVE-2025-68973"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-493_release-notes-49",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.9/html-single/release_notes/index#about-this-release-493_release-notes-49"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2350.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.9.3 security and bug fix update",
"tracking": {
"current_release_date": "2026-02-11T05:31:04+00:00",
"generator": {
"date": "2026-02-11T05:31:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2350",
"initial_release_date": "2026-02-09T15:50:42+00:00",
"revision_history": [
{
"date": "2026-02-09T15:50:42+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-09T15:50:46+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:31:04+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 4.9",
"product": {
"name": "Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.9::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Acfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3Ad8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Abaa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ae2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ae9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Ac1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Aa75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Acf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Ad63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Ae87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Abd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ad9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Aa3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Ade3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Af49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Ae5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Abe9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769065259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Ad9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Adb417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1769492398"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3Ac916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1770250889"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64 as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x as a component of Red Hat Advanced Cluster Security 4.9",
"product_id": "Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security 4.9"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-12816",
"cwe": {
"id": "CWE-179",
"name": "Incorrect Behavior Order: Early Validation"
},
"discovery_date": "2025-11-25T20:01:05.875196+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417097"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in node-forge. This vulnerability allows unauthenticated attackers to bypass downstream cryptographic verifications and security decisions via crafting ASN.1 (Abstract Syntax Notation One) structures to desynchronize schema validations, yielding a semantic divergence.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products due to an interpretation conflict in the node-forge library. An unauthenticated attacker could exploit this flaw by crafting malicious ASN.1 structures, leading to a bypass of cryptographic verifications and security decisions in affected applications. This impacts various Red Hat products that utilize node-forge for cryptographic operations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12816"
},
{
"category": "external",
"summary": "RHBZ#2417097",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417097"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12816",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12816"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge",
"url": "https://github.com/digitalbazaar/forge"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/pull/1124",
"url": "https://github.com/digitalbazaar/forge/pull/1124"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-5gfm-wpxj-wjgq"
},
{
"category": "external",
"summary": "https://kb.cert.org/vuls/id/521113",
"url": "https://kb.cert.org/vuls/id/521113"
},
{
"category": "external",
"summary": "https://www.npmjs.com/package/node-forge",
"url": "https://www.npmjs.com/package/node-forge"
}
],
"release_date": "2025-11-25T19:15:50.243000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "node-forge: node-forge: Interpretation conflict vulnerability allows bypassing cryptographic verifications"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-66031",
"cwe": {
"id": "CWE-674",
"name": "Uncontrolled Recursion"
},
"discovery_date": "2025-11-26T23:01:36.363253+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2417397"
}
],
"notes": [
{
"category": "description",
"text": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. An Uncontrolled Recursion vulnerability in node-forge versions 1.3.1 and below enables remote, unauthenticated attackers to craft deep ASN.1 structures that trigger unbounded recursive parsing. This leads to a Denial-of-Service (DoS) via stack exhaustion when parsing untrusted DER inputs. This issue has been patched in version 1.3.2.",
"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 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66031"
},
{
"category": "external",
"summary": "RHBZ#2417397",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2417397"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66031",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66031"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66031"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451",
"url": "https://github.com/digitalbazaar/forge/commit/260425c6167a38aae038697132483b5517b26451"
},
{
"category": "external",
"summary": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27",
"url": "https://github.com/digitalbazaar/forge/security/advisories/GHSA-554w-wpv2-vw27"
}
],
"release_date": "2025-11-26T22:23:26.013000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "node-forge: node-forge ASN.1 Unbounded Recursion"
},
{
"cve": "CVE-2025-66506",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:20.507333+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419056"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Fulcio, a free-to-use certificate authority. This vulnerability allows a denial of service (DoS) due to excessive memory allocation when processing a malicious OpenID Connect (OIDC) identity token containing numerous period characters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat as Fulcio, a certificate authority used for issuing code signing certificates, is susceptible to a denial of service when processing a specially crafted OpenID Connect (OIDC) token. This could lead to resource exhaustion and service unavailability in affected Red Hat products that utilize Fulcio.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66506"
},
{
"category": "external",
"summary": "RHBZ#2419056",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419056"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66506",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66506"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66506"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a",
"url": "https://github.com/sigstore/fulcio/commit/765a0e57608b9ef390e1eeeea8595b9054c63a5a"
},
{
"category": "external",
"summary": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw",
"url": "https://github.com/sigstore/fulcio/security/advisories/GHSA-f83f-xpx7-ffpw"
}
],
"release_date": "2025-12-04T22:04:41.637000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/fulcio: Fulcio: Denial of Service via crafted OpenID Connect (OIDC) token"
},
{
"cve": "CVE-2025-66564",
"cwe": {
"id": "CWE-405",
"name": "Asymmetric Resource Consumption (Amplification)"
},
"discovery_date": "2025-12-04T23:01:11.786030+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419054"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Sigstore Timestamp Authority. This vulnerability allows a denial of service via excessive memory allocation when processing a specially crafted Object Identifier or Content-Type header.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/sigstore/timestamp-authority: Sigstore Timestamp Authority: Denial of Service via excessive OID or Content-Type header parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. The Sigstore Timestamp Authority, a service for issuing RFC 3161 timestamps, is prone to excessive memory allocation. This occurs when processing untrusted OID payloads with many period characters or malformed Content-Type headers. An unauthenticated attacker could exploit this flaw to trigger a denial of service in affected Red Hat products that utilize this component.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-66564"
},
{
"category": "external",
"summary": "RHBZ#2419054",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419054"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-66564",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66564"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-66564",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-66564"
},
{
"category": "external",
"summary": "https://github.com/sigstore/timestamp-authority/commit/0cae34e197d685a14904e0bad135b89d13b69421",
"url": "https://github.com/sigstore/timestamp-authority/commit/0cae34e197d685a14904e0bad135b89d13b69421"
},
{
"category": "external",
"summary": "https://github.com/sigstore/timestamp-authority/security/advisories/GHSA-4qg8-fj49-pxjh",
"url": "https://github.com/sigstore/timestamp-authority/security/advisories/GHSA-4qg8-fj49-pxjh"
}
],
"release_date": "2025-12-04T22:37:13.307000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/sigstore/timestamp-authority: Sigstore Timestamp Authority: Denial of Service via excessive OID or Content-Type header parsing"
},
{
"cve": "CVE-2025-68428",
"cwe": {
"id": "CWE-73",
"name": "External Control of File Name or Path"
},
"discovery_date": "2026-01-05T22:01:15.703824+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2427236"
}
],
"notes": [
{
"category": "description",
"text": "jsPDF is a library to generate PDFs in JavaScript. Prior to version 4.0.0, 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. Other affected methods are `addImage`, `html`, and `addFont`. Only the node.js builds of the library are affected, namely the `dist/jspdf.node.js` and `dist/jspdf.node.min.js` files. The vulnerability has been fixed in jsPDF@4.0.0. This version restricts file system access per default. This semver-major update does not introduce other breaking changes. Some workarounds areavailable. With recent node versions, jsPDF recommends using the `--permission` flag in production. The feature was introduced experimentally in v20.0.0 and is stable since v22.13.0/v23.5.0/v24.0.0. For older node versions, sanitize user-provided paths before passing them to jsPDF.",
"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 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68428"
},
{
"category": "external",
"summary": "RHBZ#2427236",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2427236"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68428",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68428"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68428",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68428"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/commit/a688c8f479929b24a6543b1fa2d6364abb03066d",
"url": "https://github.com/parallax/jsPDF/commit/a688c8f479929b24a6543b1fa2d6364abb03066d"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/releases/tag/v4.0.0",
"url": "https://github.com/parallax/jsPDF/releases/tag/v4.0.0"
},
{
"category": "external",
"summary": "https://github.com/parallax/jsPDF/security/advisories/GHSA-f8cm-6447-x5h2",
"url": "https://github.com/parallax/jsPDF/security/advisories/GHSA-f8cm-6447-x5h2"
}
],
"release_date": "2026-01-05T21:43:55.169000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "jspdf: jsPDF Local File Inclusion/Path Traversal vulnerability"
},
{
"cve": "CVE-2025-68973",
"cwe": {
"id": "CWE-675",
"name": "Multiple Operations on Resource in Single-Operation Context"
},
"discovery_date": "2025-12-28T17:00:44.161022+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425966"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in GnuPG. An attacker can provide crafted input to the `armor_filter` function, which incorrectly increments an index variable, leading to an out-of-bounds write. This memory corruption vulnerability may allow for information disclosure and could potentially lead to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "GnuPG: GnuPG: Information disclosure and potential arbitrary code execution via out-of-bounds write",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products. The flaw in GnuPG\u0027s `armor_filter` function allows an attacker with local access to provide crafted input, potentially leading to information disclosure and arbitrary code execution due to an out-of-bounds write. Exploitation requires high attack complexity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68973"
},
{
"category": "external",
"summary": "RHBZ#2425966",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425966"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68973",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68973"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68973",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68973"
},
{
"category": "external",
"summary": "https://github.com/gpg/gnupg/blob/ff30683418695f5d2cc9e6cf8c9418e09378ebe4/g10/armor.c#L1305-L1306",
"url": "https://github.com/gpg/gnupg/blob/ff30683418695f5d2cc9e6cf8c9418e09378ebe4/g10/armor.c#L1305-L1306"
},
{
"category": "external",
"summary": "https://github.com/gpg/gnupg/commit/115d138ba599328005c5321c0ef9f00355838ca9",
"url": "https://github.com/gpg/gnupg/commit/115d138ba599328005c5321c0ef9f00355838ca9"
},
{
"category": "external",
"summary": "https://gpg.fail/memcpy",
"url": "https://gpg.fail/memcpy"
},
{
"category": "external",
"summary": "https://news.ycombinator.com/item?id=46403200",
"url": "https://news.ycombinator.com/item?id=46403200"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2025/12/28/5",
"url": "https://www.openwall.com/lists/oss-security/2025/12/28/5"
}
],
"release_date": "2025-12-28T16:19:11.019000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "To mitigate this issue, users should avoid processing untrusted or unverified input with GnuPG. Exercise caution when handling GnuPG-encrypted or signed data from unknown or suspicious sources, as specially crafted input could trigger the vulnerability. This operational control reduces the attack surface by limiting exposure to malicious data.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "GnuPG: GnuPG: Information disclosure and potential arbitrary code execution via out-of-bounds write"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "React Router is a router for React. In @remix-run/router version prior to 1.23.2. and react-router 7.0.0 through 7.11.0, 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. There is no impact if Declarative Mode (\u003cBrowserRouter\u003e) is being used. This issue has been patched in @remix-run/router version 1.23.2 and react-router version 7.12.0.",
"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 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-09T15:50:42+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2350"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:0b85460655f6f540e6278f5bd08e6c52ea3a3e4acb54a79d524247227f5e9d7c_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:294c8f3d3cce71c22e6bde11783c04fa5db2ae19ad2a741c418005faa41da67a_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:4efd0780d62b6dddbd5eef4ae8c1620b8e72dfa1551d89e8c9b281ed50afc2f9_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:cf5beedfa9139034d92f170115321be8f442b152628f1c91841a1be1cadfda33_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:0115106585032e52bedca4443f008c755c3fbc5e4fdf4f4be974cb6be9345b86_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:32faefcdb174ed2e92291cc075ab321e8fa462fcbd951e7edaa019011e87ccad_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:cfb6a722aa6ede9218d9d7a28c7aae1b1455bc0ba5a41ba488e95ee504cccd70_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:d63ab6fcf507a4dc7c38df369111c44725ffdc3384840cd7cfbb89fe216af914_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:01d01a649ed0c466925ebdfc7e632c7c01f0e59ef5d764d2f2dcf51f355b68ec_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:1324d938cf5047df9125eb4bf6a9565fc4443b62c24e34494c1f57d1f8b5bdb1_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e87ce042d9afb90c643de99cfaa98314230a2d9a01ad1230cd0596413991f4f5_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f49305d1e529f1be7d213f548cc6d49d958ff578eb4e41320250634497a1dfb2_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8111014ef89a6679f19c48888189ddff4e3bb4269d1ccd09c7114ba6e5360d6_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1dceed562203416b6d853e66402a2ec69370a53cc119953aeb442288ecebfa4f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:1e9116742efaed46b4b93ba1ff8eb026ffa5bbe5146690d020389b95bec77051_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:6f0060cfb71c9ee2788f2bcebd1d9aa40e337c10921a4c631c0119c80721b539_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:d9c49f3d6b2d8ec68784c59bf75810bd4290f4118eb7e512fd6150193600abc4_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:0f27626c8a671458174b6a3dc08268ec13f1b1ce297ca26b085a5799971470d6_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:92cc9e13e92ad25bc2ca62705136be35b16699d1ddc9c8f5653cfb7b9e9f9e72_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:96ba7c71703db09c15f1633d2b5c14a22231a6f87fffacb639542f4ad2429551_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:baa02b25c952aa9e463fdd8bde3ae196621ca09cabd508b9638a82c528b6acda_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:34d1530a0759075f9a6d7cb31d45efac05575e0db2ea43adc3379f24b1524060_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:50a2768f8ffcbdc15ed719eb6e5c08da0a9e31b2f17c77cf0b305c4f3d5d8135_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d9662472c1cd18a4a0ec5103b30cb7576ae926d43ed290c88586a9304d01d3c3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:e2d7323de0313fc7e498791d2294fe4c46448638753349002dfa0e16580f9435_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:44c28896965619b9b4804dd9099303f076533dd664766cff932ca27a9b3b2805_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7830f4f7b3673034dacbe1d48daf493afc3282fd1509b12b2e8d7716179c036b_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:83b76afb22949a7488a6480e16810b74136e395380a5f2050e2f2419aa90a337_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e9b1465496174394f2e54facebca1f1d0cd6dc54ddb0a82265b3feddd3d1867e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:249ae5abf72f255ec0b9152df39a5b2bd270df420bb585ca390e5c7dbdc4b5af_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bd07e7aa5ab8f4419cfe29872bc99d6bca1fe5c73034633ec371b1f1ff59d66c_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:db417ef9da0ec483035d4545ca5a3728682435458daf12ed0500a08430a4680f_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:e5e8360e4078c425988ac07bc24860e5361b6e119f5fa54370d0775a60da0f9d_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4b8ecf8d2f99224d7272b1749b7b89f8bdeb5d23458302809a06aab6fa91b553_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8a1888b71a59b083571620531fe473b9b042fc7aab0d99ec2e0b184f3101c25f_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:be9caac01f90306f9e645ae9981b34642434d08fc5259c302a369c1675224f29_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:c1fd4368e9067519644039006f494c391d65e59d45abc981707a886a17829cdc_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:6772a5c3a85b279176346e893e3ed08498861ee31495c32236dab20a95392871_s390x",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:7a3f81bbda7dc41d40b2f192e99b8ba4088fcac383e70ba9591d1da074be108e_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:a75bba630478e2466c371b78ffce02ad116cc872bbe78624cd3438e45f47f93e_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:de3478fd6fbd75bd4a428241e6792eefd166f7f0a38ce45b7994cb51d284f010_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:461fee74ff86feaf21bda5d170975b185758cb891307e8e5e5930985a2191307_amd64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:9848a4f71fd2bfdc2a22a338a253875f3073777c0d5d5f70b88429d8d4459fdf_ppc64le",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:a3cfe3a06fadbe73d8a12e84beb504c9204e34f52af459c30d4e72a2b0a411e3_arm64",
"Red Hat Advanced Cluster Security 4.9:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c916f911c1ff8a7991f46dc850d014db42872acfc74e6ea0f6880336b066a6e3_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:1517
Vulnerability from csaf_redhat - Published: 2026-01-28 22:40 - Updated: 2026-02-11 05:08Notes
{
"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-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-02-11T05:08:20+00:00",
"generator": {
"date": "2026-02-11T05:08:20+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-01-28T22:40:11+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:08:20+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 4.8",
"product": {
"name": "Red Hat Advanced Cluster Security 4.8",
"product_id": "Red Hat Advanced Cluster Security 4.8",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.8::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security"
},
{
"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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8",
"product_id": "Red Hat Advanced Cluster Security 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 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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-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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. An Uncontrolled Recursion vulnerability in node-forge versions 1.3.1 and below enables remote, unauthenticated attackers to craft deep ASN.1 structures that trigger unbounded recursive parsing. This leads to a Denial-of-Service (DoS) via stack exhaustion when parsing untrusted DER inputs. This issue has been patched in version 1.3.2.",
"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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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": "jsPDF is a library to generate PDFs in JavaScript. Prior to version 4.0.0, 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. Other affected methods are `addImage`, `html`, and `addFont`. Only the node.js builds of the library are affected, namely the `dist/jspdf.node.js` and `dist/jspdf.node.min.js` files. The vulnerability has been fixed in jsPDF@4.0.0. This version restricts file system access per default. This semver-major update does not introduce other breaking changes. Some workarounds areavailable. With recent node versions, jsPDF recommends using the `--permission` flag in production. The feature was introduced experimentally in v20.0.0 and is stable since v22.13.0/v23.5.0/v24.0.0. For older node versions, sanitize user-provided paths before passing them to jsPDF.",
"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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:ec4c412b018affc913dd6e50fa1ecaba47993619102a235572d30eb354af3599_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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": "React Router is a router for React. In @remix-run/router version prior to 1.23.2. and react-router 7.0.0 through 7.11.0, 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. There is no impact if Declarative Mode (\u003cBrowserRouter\u003e) is being used. This issue has been patched in @remix-run/router version 1.23.2 and react-router version 7.12.0.",
"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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:189126988989d9ea557c1356386ee5a7443d5cb01717e0d974f0603a2b659130_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:452b98b484516602e84835289b97d3ce5bfea4de66996fc66381a74e5f47ab44_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:db0681aece90f0ecbd6cebe7dbc60ba59f02258a27cdae938752a7e9dbaf475d_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:eaea088de3ff04166ec467b67d70f55662a2917441d3d9d4e8dd39677031bc4c_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:5271f61b08c3c593db3285d7d68014792440944ee38c2fff1839f2d401cc27ad_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:69cbd0e1ffe7abde1ac760e74088a5f98c529fa22b426dd15de013c7308bf325_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:97949783533ac35c4c48c3bdfcb5306853779e82b101e52fdc2f95923d4d071f_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:ca3b14d4dc352c45cfab525c2c4e2c703c46a948022634b1d023ac27fbf57f89_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:2b5ba43a096f738c776e4fc95ac5afabbe1b80826c7350f85f0ca5987f412406_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:438b4904d97ca6cd51284955f284c0b078af30859460eb1ed608e20535ccc2c8_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f96217aeff1a39024700537986dca70ce7e94949c91c3da815dc715ef6588044_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:fe5172976364ca5ef1bd83d25b5a51497d51782ef30706ccbceae3db64d10019_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b22341e8dfba8b10b70f21f3b597c02874bae485c07517402db0930397d82688_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:074255ff15e39c96ccb0dac16df03a8f3066afa4f2f6d81588e11d0cff5f7dd6_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:194bed8ce4509622b1802b5b6c528e34c4fa610e7ca2894d2c5a34874e1e393f_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:f23f9417f4dc4631bb2ab5e51e95d3a28ea7511f96a12f5d717353db4a1b40cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:ffc6d43eb11c5cc4672b73597b6cfe0dce6356f40777f4ab2dc26aa1f74cf957_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:678b96caceeb30a64c2f43395ab291e3035fa122d46eb9d2289e77bfc6b4c3b2_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:cfa4cd81826c4f945fdb2900aa16028919ad0737beb15c424162a34c1f86a46b_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d353cd9e8305138cc186affd8d68256061ca2113208c8969a5b0fa7b4c1eab24_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:dcfa45646e951547da04021f3f35d7262a95f565366a1c5ebbf12532f783f686_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:9386cdac44378229ee4bbae348924e496738eadbb30a5a338886280a5361c91a_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b60ce2debac0fa9a6f0a125775df71c175aa1a0d25489cc63e1caf98464fb6b3_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:cc3f28d099d73edfd4a234b5c6bdd52299a7b3fec9b25275aca413b64c9320e3_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:f5a834aae45dabf73e50ef426ac18c2a4737c99373aa8705b60778cfa6faebe4_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:670450f25d9a48e836d7ea6196f7da036dde40a13c87ac4e56821a6c255820b1_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d480afc91510b9422e2d227813052a6a25a759bdd0fee683e399d3dcfa08ab29_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:e292fc02185514b2e246e4ca7e23572bf24d64b72bb503e80b5f43411d6dd585_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:eb98140ad6ba3fe2b9fee5f59130671b490cf2849f5fb68a2abc51748d97ff8d_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:14f23c5a1b81122d6c019ee470617da0e4597b9aac42c008797c0be8a0c14b45_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:5180c88b2677bb366aea5af964bf40c1bad8bbf4c33cefaba87ce6c22e9e8e17_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:87359ad896ce3ecce5da9763a34f18b0481cbad50b4f3b0130b948e57645f818_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:c7a63ddb83702fc56250aaf0bf090db1038d7d29eb6025b6e9bc717e3cb3ced4_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:1ae07e2c03ed0497812c7f716d05358367bcd6aec9f25141658a86cba4f9361e_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:8e4a29ad6b0e226e055bc56ef73b751a94f35fe06e83cf021b1a23204fab64cd_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:d5242d47d9ce958769e5986d54eee1522b19341677ef2051bfea3c72b4b86ce5_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:deea39a769a89ac2ac4ea6470d4865de5802331e36b81ac167526b7cd92713fa_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1a3802e374386dd277f1e806a0cc7cdd9327dd57900df2e8af373acb0501a862_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:1b160193dd2e7612a7cd95e2f3e2863fae06c51b29afe8e67d57fa80ec703884_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:e7e8edfbe4e6a55628f4d161d42d375f41e45e9bac792e1d33aadb3dbcafe471_arm64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:f7687becdf95ecf98b9fadbc501163c3bc2f4b1906fd59c19ad6717a1897f8e8_ppc64le",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:1c5cb619fc844a48f79d2996d8c2239bab7077845d404184515d4e7df7afdc6e_s390x",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:4586e2f4308662e5ff54d15fb4a7839982fd59a74a7e0534b7df0537c65da3e7_amd64",
"Red Hat Advanced Cluster Security 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:c69235da18dcccc515f64615d6e2313423520cff6c3d32b87b2c3e1f1069ffa3_arm64",
"Red Hat Advanced Cluster Security 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:0261
Vulnerability from csaf_redhat - Published: 2026-01-07 18:34 - Updated: 2026-02-11 05:08Notes
{
"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-02-11T05:08:00+00:00",
"generator": {
"date": "2026-02-11T05:08:00+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-02-11T05:08:00+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.",
"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": "auth0/node-jws is a JSON Web Signature implementation for Node.js. In versions 3.2.2 and earlier and version 4.0.0, auth0/node-jws has an improper signature verification vulnerability when using the HS256 algorithm under specific conditions. Applications are affected when they use the jws.createVerify() function for HMAC algorithms and use user-provided data from the JSON Web Signature protected header or payload in HMAC secret lookup routines, which can allow attackers to bypass signature verification. This issue has been patched in versions 3.2.3 and 4.0.1.",
"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": "Forge (also called `node-forge`) is a native implementation of Transport Layer Security in JavaScript. An Uncontrolled Recursion vulnerability in node-forge versions 1.3.1 and below enables remote, unauthenticated attackers to craft deep ASN.1 structures that trigger unbounded recursive parsing. This leads to a Denial-of-Service (DoS) via stack exhaustion when parsing untrusted DER inputs. This issue has been patched in version 1.3.2.",
"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:2078
Vulnerability from csaf_redhat - Published: 2026-02-11 04:27 - Updated: 2026-02-11 05:08Notes
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.18.33 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.18.33. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:2071\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\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* lodash: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2078",
"url": "https://access.redhat.com/errata/RHSA-2026:2078"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-65637",
"url": "https://access.redhat.com/security/cve/CVE-2025-65637"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2078.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.33 bug fix and security update",
"tracking": {
"current_release_date": "2026-02-11T05:08:35+00:00",
"generator": {
"date": "2026-02-11T05:08:35+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2078",
"initial_release_date": "2026-02-11T04:27:02+00:00",
"revision_history": [
{
"date": "2026-02-11T04:27:02+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-11T04:27:55+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:08:35+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3A1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3Abf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3Af0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3Ac3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3Ad5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770203143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3Aa1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3A1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3A85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3Abc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Af3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Ac4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Ad953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3Aeb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769924179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Abc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Afb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770202938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Acfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770061367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3Ae17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3A15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3Aa46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769923612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3Aa86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Aa35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Acb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769824240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Af42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Ad7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3Adbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3Aada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3Acb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817962"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3A6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819056"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Afa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3Aea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3Abd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Afcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3A8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3A6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3A912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ae8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3A9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3Ab2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3Afbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3Aefa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Aa9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3Ad3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3A64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3A8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3Ad4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ace471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Af0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Aa65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3A86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3Ace89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3Af86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819855"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Ad5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aa9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Ad7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Ae526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Afb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ad77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3A0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3A39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3A254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770148903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ac1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3A8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Aac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aa9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ab86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3A32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3A69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3Aebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3Aaad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Ae134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3A5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3Ac5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3A77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Acb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3A24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Ab1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Ae53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-nutanix-machine-controllers-rhel9@sha256%3A65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Ace68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3Afc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769826015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Afaa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3A77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3Acd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Aa82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770189059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770020259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9@sha256%3A747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770020259"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-rhel9-operator@sha256%3A813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Ab656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ad4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Abac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel9@sha256%3Aaa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770019567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ose-vsphere-problem-detector-rhel9@sha256%3A691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817711"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Aacc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-rhel9@sha256%3A00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819332"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel9@sha256%3A18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818145"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3Abf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3Ad81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770203143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Ab28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3Adb705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3A0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3Ab24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3A43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3Ac3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Aeab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769924179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770202938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Aefa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3A8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770061367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-rhel9@sha256%3A1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-agent-rhel9@sha256%3A80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817167"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256%3A4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769923612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256%3A064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769824240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3A961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3A57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3Ae8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3A973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Ab69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3A16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3A8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3A26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Aef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817962"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Aa1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819056"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3Aa33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3A71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3Aaabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Ae32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel9@sha256%3Aec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818308"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel9@sha256%3Aa83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9@sha256%3Af3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818323"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel9@sha256%3A9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel9@sha256%3A4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cloud-node-manager-rhel9@sha256%3A34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel9@sha256%3A282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9@sha256%3A1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel9@sha256%3Ac55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ad29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3A8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3Ab7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Aef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Ad21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Af5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3Ab42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Afb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3Af058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819855"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Af7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aa6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3A141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Ac8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Ab5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3A42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Ae2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Aeb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3A4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Af4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770148903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-image-customization-controller-rhel9@sha256%3Af6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818758"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3Ad2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3Aa7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Af466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3Aaec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3Ad32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3Aeed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-aws-rhel9@sha256%3A7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-azure-rhel9@sha256%3A1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3Aebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Ab195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Ad37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Aa62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3Ae36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Aec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3Aa7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769826015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3Adb81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Af402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aa3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3Aec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3Af0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3A1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770189059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ad13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3A5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3Aa728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ab6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820121"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3A15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3A5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3Adaee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3Ab4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3A18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770203143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3A69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3A496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Af16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3A2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Aa93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3Aae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769924179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3A63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3A9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770202938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3A85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ace65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3Af9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770061367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3A57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3Adbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769824240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Ac51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3A7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Af59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3Ab98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3A68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3A6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3Ae72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Aa5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Adcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Aaef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3Ab7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3Ae7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817962"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Af2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819056"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3Afee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3Ac2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Ae65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3Aee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3A6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3Ae9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3A399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3Ab1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3Afd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Afeddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3A9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3A7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3A0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3A9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3A8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3Ae3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ac2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Aa352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ab1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ac269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3Aaa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819855"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3A80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3Af686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3Abb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Abfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Af5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3Ac1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3Ac10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Aa26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Ac7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3A2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3Aed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel9@sha256%3A24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel9@sha256%3A3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3Af5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Aea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3A532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3A0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Abbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3A6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3A9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3Ae32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Afdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3Ab0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3A2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3Af45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3Afbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3Aaf1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3Aa9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3A5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769826015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Ae0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3A5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3A0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3A1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Ad0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770189059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ac3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3A23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Afbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820121"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9@sha256%3Ad87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/aws-kms-encryption-provider-rhel9@sha256%3Af1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-kms-encryption-provider-rhel9@sha256%3A525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819589"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-machine-controllers-rhel9@sha256%3A5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818364"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-runtimecfg-rhel9@sha256%3A2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-etcd-rhel9-operator@sha256%3A5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822116"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-monitoring-rhel9-operator@sha256%3A736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818946"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-network-rhel9-operator@sha256%3A053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-node-tuning-rhel9-operator@sha256%3Aea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770203143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-policy-controller-rhel9@sha256%3Aa3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819621"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-storage-rhel9-operator@sha256%3A308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-version-rhel9-operator@sha256%3Ae5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-configmap-reloader-rhel9@sha256%3A1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/container-networking-plugins-microshift-rhel9@sha256%3Abbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-coredns-rhel9@sha256%3A990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821950"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-attacher-rhel9@sha256%3Abc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9@sha256%3A56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-manila-rhel9-operator@sha256%3Ae735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818453"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-driver-nfs-rhel9@sha256%3Ad3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-livenessprobe-rhel9@sha256%3Adb164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-node-driver-registrar-rhel9@sha256%3A45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818351"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-provisioner-rhel9@sha256%3A9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818628"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/driver-toolkit-rhel9@sha256%3A869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769924179"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/egress-router-cni-rhel9@sha256%3Aedb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818201"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-proxy-rhel9@sha256%3Abf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-alertmanager-rhel9@sha256%3A3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770202938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-node-exporter-rhel9@sha256%3Ac25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822527"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9@sha256%3Ad1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hypershift-rhel9@sha256%3A0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770061367"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-proxy-rhel9@sha256%3Aaec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-rbac-proxy-rhel9@sha256%3A63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769824240"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-state-metrics-rhel9@sha256%3Adf0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-marketplace-rhel9@sha256%3Ad44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-monitoring-plugin-rhel9@sha256%3A14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-rhel9@sha256%3Aedd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-cni-microshift-rhel9@sha256%3A40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-networkpolicy-rhel9@sha256%3Aab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-networking-console-plugin-rhel9@sha256%3A999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770234937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-server-rhel9@sha256%3Ab810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oc-mirror-plugin-rhel9@sha256%3Aa1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-builder-rhel9@sha256%3A52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-rhel9@sha256%3Aa84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9@sha256%3A021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770235261"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-console-rhel9-operator@sha256%3Ae89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-deployer-rhel9@sha256%3Ab9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-haproxy-router-rhel9@sha256%3A2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-hyperkube-rhel9@sha256%3A2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-keepalived-ipfailover-rhel9@sha256%3A252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817962"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-pod-rhel9@sha256%3Ad65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819056"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-docker-registry-rhel9@sha256%3A5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tests-rhel9@sha256%3A9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-state-metrics-rhel9@sha256%3A445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cluster-api-controllers-rhel9@sha256%3A85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-lifecycle-manager-rhel9@sha256%3Ab16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-registry-rhel9@sha256%3A747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-api-server-rhel9@sha256%3A8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818223"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-csr-approver-rhel9@sha256%3A4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-node-agent-rhel9@sha256%3Adaf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819592"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-orchestrator-rhel9@sha256%3A1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822071"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-agent-installer-utils-rhel9@sha256%3A344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-apiserver-network-proxy-rhel9@sha256%3Ad5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/azure-service-rhel9-operator@sha256%3A3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-installer-rhel9@sha256%3A39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177353"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-baremetal-rhel9-operator@sha256%3A6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819816"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cli-artifacts-rhel9@sha256%3A6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cloud-credential-rhel9-operator@sha256%3Ab25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819514"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cloud-network-config-controller-rhel9@sha256%3Aad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-api-rhel9@sha256%3Ab464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-authentication-rhel9-operator@sha256%3Ac8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-autoscaler-rhel9-operator@sha256%3Ab4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821231"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-baremetal-operator-rhel9@sha256%3Ab6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-bootstrap-rhel9@sha256%3A1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-capi-rhel9-operator@sha256%3A25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-api-rhel9@sha256%3A12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-config-rhel9-operator@sha256%3Ac191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-dns-rhel9-operator@sha256%3A290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-image-registry-rhel9-operator@sha256%3A3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819855"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-ingress-rhel9-operator@sha256%3Ad07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Af55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819212"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Af40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-machine-approver-rhel9@sha256%3A0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819722"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-olm-rhel9-operator@sha256%3A0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822600"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822350"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9-operator@sha256%3A829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-samples-rhel9-operator@sha256%3Adf09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817086"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-cluster-update-keys-rhel9@sha256%3A2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821765"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-container-networking-plugins-rhel9@sha256%3A94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820834"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-resizer-rhel9@sha256%3Afe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-external-snapshotter-rhel9@sha256%3A7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817939"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-csi-snapshot-controller-rhel9@sha256%3Ac42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-etcd-rhel9@sha256%3Ac6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/frr-rhel9@sha256%3A646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel9@sha256%3Aca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel9@sha256%3Af42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel9@sha256%3Aa1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770148903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-insights-rhel9-operator@sha256%3A9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769825791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-exporter-rhel9@sha256%3A01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821443"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/insights-runtime-extractor-rhel9@sha256%3Aad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-rhel9@sha256%3Ab230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-altinfra-rhel9@sha256%3A1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770177470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-installer-artifacts-rhel9@sha256%3Abc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770181281"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-metrics-server-rhel9@sha256%3A15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kube-storage-version-migrator-rhel9@sha256%3A00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kubevirt-csi-driver-rhel9@sha256%3A59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-libvirt-machine-controllers-rhel9@sha256%3A47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817656"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-rhel9-operator@sha256%3Ab76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-gcp-rhel9@sha256%3A44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-api-provider-openstack-rhel9@sha256%3A11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819310"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-config-rhel9-operator@sha256%3Acfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-machine-os-images-rhel9@sha256%3A0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770188963"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-admission-controller-rhel9@sha256%3Aab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821220"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-route-override-cni-rhel9@sha256%3A7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ac08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822772"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-must-gather-rhel9@sha256%3A0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769823498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-interface-bond-cni-rhel9@sha256%3Af44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818142"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-network-metrics-daemon-rhel9@sha256%3A511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/network-tools-rhel9@sha256%3A665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770190502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-oauth-apiserver-rhel9@sha256%3A2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-catalogd-rhel9@sha256%3A9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-olm-operator-controller-rhel9@sha256%3A039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817881"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-apiserver-rhel9@sha256%3Aa75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819124"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openshift-controller-manager-rhel9@sha256%3A3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769826015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9@sha256%3A2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818857"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel9@sha256%3Aee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821289"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-operator-framework-tools-rhel9@sha256%3A51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ovirt-csi-driver-rhel9@sha256%3A899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-rhel9@sha256%3A4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9@sha256%3A97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel9@sha256%3A601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-powervs-machine-controllers-rhel9@sha256%3Ad5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769819515"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-route-controller-manager-rhel9@sha256%3Aeb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769822065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-service-ca-rhel9-operator@sha256%3Ad7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-tools-rhel9@sha256%3Acbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1770189059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256%3A5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769827605"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prom-label-proxy-rhel9@sha256%3Aac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769818181"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-config-reloader-rhel9@sha256%3Ae5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820199"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-rhel9-operator@sha256%3A4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769821412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-telemeter-rhel9@sha256%3A67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769817705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ose-thanos-rhel9@sha256%3A184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1769820121"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
}
],
"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.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T04:27:02+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:40bb7cf7c637bf9efd8fb0157839d325a019d67cc7d7279665fcf90dbb7f3f33\n\n (For s390x architecture)\n The image digest is sha256:7e67adee8cc5702b37f38757040107f7a47f37e3fc393f0907f0cddd23ba3891\n\n (For ppc64le architecture)\n The image digest is sha256:812958be0ef6e3225890a52288d85734b064d9680db8f54efc8e22ad8c5afbed\n\n (For aarch64 architecture)\n The image digest is sha256:17eb95547f20de60bce6bb820ab8ce1ae83d0d2cd1fb3c2331ff8a2a7b4b36bb\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2078"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_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.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-11T04:27:02+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:40bb7cf7c637bf9efd8fb0157839d325a019d67cc7d7279665fcf90dbb7f3f33\n\n (For s390x architecture)\n The image digest is sha256:7e67adee8cc5702b37f38757040107f7a47f37e3fc393f0907f0cddd23ba3891\n\n (For ppc64le architecture)\n The image digest is sha256:812958be0ef6e3225890a52288d85734b064d9680db8f54efc8e22ad8c5afbed\n\n (For aarch64 architecture)\n The image digest is sha256:17eb95547f20de60bce6bb820ab8ce1ae83d0d2cd1fb3c2331ff8a2a7b4b36bb\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2078"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_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.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-65637",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"discovery_date": "2025-12-04T19:00:54.313916+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
}
],
"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.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
},
"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-11T04:27:02+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:40bb7cf7c637bf9efd8fb0157839d325a019d67cc7d7279665fcf90dbb7f3f33\n\n (For s390x architecture)\n The image digest is sha256:7e67adee8cc5702b37f38757040107f7a47f37e3fc393f0907f0cddd23ba3891\n\n (For ppc64le architecture)\n The image digest is sha256:812958be0ef6e3225890a52288d85734b064d9680db8f54efc8e22ad8c5afbed\n\n (For aarch64 architecture)\n The image digest is sha256:17eb95547f20de60bce6bb820ab8ce1ae83d0d2cd1fb3c2331ff8a2a7b4b36bb\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2078"
},
{
"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.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_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.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:19dc8d2e3736c5fc743b68e6c75299d526c135fb2f407f52f76aac13d26b8c98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5ea1eb4cb71309920f4d15baaaa92021467102496fe0c7eec0d3ec50b5cb40c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:70be81b579205889ea008fc19c5590fa41cc304bced89e8bfa140ed866e8f412_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1a8ccebc957868a597fdb30690fdb7553938e96d631d423e53025be87507b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:5197e066d417f075cc5537eb7dc35aaf284c8ea2b67fa8995d557247ae609001_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:525f7e0adc61c33013e0daf065178f306c8964256118b7a41f9313e621c44376_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:78c80cdbe2cfd9e03ac5a64700fa9f9548ee2bc26e16a27363b16c0a11d6e40e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:bf197690ee4fbf9e426ff681ac3553191d03ec4325629286c0b73d2bd6d7797a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3bda397549b83f532df03db98801ef723b86c6eeb8f3ca75e9f50ddd8a380b15_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:4a0ffefd04ea9d45586c7092386ea894f07869ada80c79e6c6fab3863bb82d29_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:5d5bcd6a01e6dcd0db501a563f3bfd26c148a37b6922b6dd68c04d650abacd80_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d3a8504081f29a1838e486d393ad553e32670a019ff547ccd0a806711a3fe593_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:6fcab14d8cbcfb642ae6cc0d581cb152e45f39cf75c303ba7760fd448dfa2b2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:9ff8313551e80f4ac8c6a36e0b8dbb64b8bf16670a0ffe226e349c8ad1b8a98b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ad41c6f3334718ce7e02b41eba8ee1f1c1ea74ae649cb6e35932f450afffe2f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:b7dece740625cbfd17145c4941bcd6db482e2f234438c16945ffa4648a6c25da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0b81b157b74ad3d71f8a02403039a517edffc41b9759a16392c0910ddcd18b6d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0db825b0de0253d16815b7f83605e6c8b83e42ef6b25b77b70c214ed98245968_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:bbc41a3277181498c6baca7056c06f365e0ae51cc6bc6b6f773c898e08b5bc83_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f16d468c4061473a6c374764b51091aa62a54803a7286d2d993a7f7759da38aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1320015d5c4ef10b9267e75e5d839d002760fbfbe5ed631edb049d3759114962_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:869e0e91811715b34849f1fbac2fcdb4f494e10cbb6c5c6ee75f43582e3bc02c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:90cc0b46973548300124fabc7626ae452f496d0b1b17bb5f37e5c90d2633ba4c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:eb3a44c843f0952ad31be631b47ce2ca79e7db8c68a8e696e7a9b3b78e3c7f80_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3e745443588ddd7c84a5fe52162ebe648df9e3d52138c75b7021617a6bb230a5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:63fd3a597119d93ee02dd8ef5da250dd6dc9ac80507180f6ae7a2ff2d20bc830_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:bc0ca626e5e17f9f78ddbfde54ea13ddc7749904911817bba16e6b59f30499ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:edb20d794cf0571c91a4279efcd2ab14be776bbad24984071190761160a57936_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:0db75a631b1a51f2e6aa1cbf62770f4bd7604965ab1ddaddb07d18eb324d0acf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:646306be7b25587e3b0e33693c1439da7d3c152e75006ae1fc9697194f19e13d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:e2edb5b1ca6a58b9f3e1ff82af40eee472446058c347906982ec4f5762c1bb27_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:ed9b397eb4d9f84e1192bc572f7806ac81f8cfdf1001edddfe87dca5c7b62eee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:01e78b917031324680a7090bd6278ec8be72ad52dde7f21f883cfac384add27b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0bfa1782e17675f58c094c92cde2294938138dd54a075c85c5bc2be03c4fbc61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5d17feec8e6b5e9b6ada5a6f0e457561ba12217edafd9c0930040361dba1b360_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:d2527298ad920c49290435616beec8bf3a35b4cf73c9d87b1533140c83249124_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a7c4d8138e4cb716944979f9afd66cdfd9c78cd469cd6606ba9d3b4d2d65c5a9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aad10d5f4868b0d0875bf289e755dda7741012bdc8b781ccdf590462677b2e27_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:ad20d3038b9554a8de40baf057a87d7c183b7590d726115d3692eda5bf126208_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f5c9442b26833a872eee8316fcdb19e8139fe2e7f255cc58e12e9e29eff28fbc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:15aff429c7d030142282809aecf6df92d504b8b337d655531a55b0aac3c387d8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2b05fb5dedd9a53747df98c2a1956ace8e233ad575204fbec990e39705e36dfb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:63376a14f598cb9d3aad886292bb789b6b41af4e50fd05984dbe42571e4b0ead_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:d32749484276596d609511df126a2f2f50d027c100a056c69663178b8db85f3a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2382ad85e2366bd60761f5c04f366c1f66d0e6e919742e942dc2b4e0aab203e1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:59f814b753e82ebd2d7e5103848dae4d1820ef346ab8cfd2f3c87398d5420965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:647c62e0cc4aa10081f01937ac9b4a1fc119f86dfd21f5078de9727bae7fea52_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:8994602a8d7fe9ba6156bd3620ec61da9b54f558d79ccf64e4126c10f20b2e6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:326cb0a6d75295a723c5eab83dff424734745988fcddf4d00e8e5b889b02e513_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:665f428fb0ae7c6cdc94be253ca5a8510be34a477ef1051c64828a82cecb8a90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ec1799d5c74be810d3380e3df140207c738751e5d5d6617ae0ca917ee509a0e7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:fbf6f34c0a524bb29de6ad2ce8dbc0fc2d50749464636db710b654c7530d7e88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:3e16dcf5296ce7c03f279d8586757a8864b8f778fd4362d443a7281ba3d8ad4f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6895ecc29ee7c70773e0936bbc6e0f749f4604484618c03a9f55072d5752de18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a1d3dda578328c74b09e1d20c4d7ac5bbe28a4a93d5a7d9460a1af2bb7e544c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b69ef67d7afae215e946b2155d452463fef05cbe9b31770ce3fb4120b98922a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0f524c6578039867bb1d56d776f93a120d4fee2e18e31f83c18664b34b6d0fb4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:117a846734fc8159b7172a40ed2feb43a969b7dbc113ee1a572cbf6f9f922655_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:82dc6f6802ed88ef7b57a7392c4ce94926b7c11afe8d8a3df6158a649213fcb5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eb5f18681d47b42c2c81a4cea4a914a274738d2e4b3c0471157eb234c8fc743b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:26a4bee11f102bdc3abe7f55a2cf08293e85e02593ceb196b31f85459b4d2f60_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8449b7012536e156bc53eaf17fc79a96181818d9e5cbbf6aff3d222643534552_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8961d2a2f97f17035873e44a7c55cfd962fb72efbaa3a2ac8442fba67436c8c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aabe2b7705232816334950a3cd23b378d69b025d1884d8b848cfb09ca123b2d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:08b170f09d5391b973d25dd96d9c1c121571443a7c67f3ae5c910078637a1f2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4e4ffb96fd5c63cd95d05b6d67f2c19341633e9578a6eaadf60f9de566d31fd0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:90e358c343c5e257741d7baf98fffbb61ed21773f50cab7cd782f65abbeb4358_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:bd420e879c9f0271bca2d123a6d762591d9a4626b72f254d1f885842c32149e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6a1b8a487a6b640a1d7494813f808c52b722e4dc910c4a04e0d649e0ad325ad5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:daf1dbe03973505d49e6ea641e6bebf42c7faaca9d060093683c5cc053ed8a54_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:e32ca8f190d201688d0c7b9c4b611ee4478130ea014a91ab8c9c90036599b24e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:fcad7a0c146fbf63b6818b61c6f517828063b731cacf95d04caa76d81cf3e966_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1976c642443b18f1b2af93e927e8f01b8297a209774d154c39c2d3b7e8595fd5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:79f1b3b58b473b19d93328462de2af449c39f7157fd22bd3c639afcd35535bbd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7cb147d7b57f70f0a0bae59a8a5ddbea3f9e8c184909b0ed9f34a54fbf7a7804_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e9e77c4e1ae9828edb7449243d657235718c7e7083dfe98cc3617b67cd542baf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:344325b8886043d862369feebdbcdbd3ec2ae9b61905f5991fe6dcb207535b5f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:41defbf434f2d556c4e3f13ea581490a8daf7122d561fcfa32d8c381c73caa4a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:970d2b060d91324b5f03e7fd1c801156e5f4e41d6fb551b11008080932a3a430_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9f2945c4a4ab764c1bd9d4281fb48c5fa3065f608d3c4c2e94b91ec99c5261ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:04b0e4c36816773a71d0ba50487113340197308b3459412f504477db6cbf494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:349d6b804d07687076057300cf0f6384ec1106916d059bcb719e8df990f2db61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:399bf6901034daa53fc29c300a830cc308c79243a5eacf86e16468f1f31d8137_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d5e4783f7ff9060582fc798a8dfe605fdce0ca20a6a0af13508bc3151ab4c602_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8e0399982dab011abae3a2d734848a223de5c413f9b43bfea345fa67f1099cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ec32b7af7d5d8394941eefdd634f7121f2745bc239fae51ccabdf3ba32dff265_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:6f33a5a7911107890f8cadb1948f1c21592f817008847b66b8db8d64f563364f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a83abd1855e76409d78cad0a1af3febb6515d76c1b159ef2040511067fbd27cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58b8490c1024331c6e8828cc95d0fe543cfce6bc466b4b3ea3b11995adb3e844_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e8adb56c19756f7e55f478cd284e998cc4d37340170e732a2bc27b259d0e0b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:912c21e65b0ef96435a6ae10600f216887edad9217318af692dc0ae3c8d637d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3847269e5d9285ed2e1297df53329fadb69c4c7bcdc90a325c6b093990a4648_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f7b4f0e567fd0ed93166da6e77359417d565bb9baf633fed007a14cb69d76ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9f900752cbf073de4361d0419f195c1a0445f98ca3422a4e85d70a85263c345f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4adb80b61c118c6d6b68a556418ce8263ad5980c872a77953d97054c072098ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:b2583e16c75809082b3825c4e218542c08c8cb6dea891e3f5c63a6fdd500cabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:34e1eb22f68036ffc6ae7247d64d5795819ae2c3a7da8f8e588221bc11bab890_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:fbf8c8435800d70deac3dc5299f66a1a724ca0568624819265743011dfbb242b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:282e111af1030a3054683f4273417265d1c26b7a9adfd3d3e35365595ac9bbc3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:8e29e53899062a4198edaa4acdc509109e2e78d050299db21108d2c656978da0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:14467f9fc40b2c4af01ef1356d87a22ab3dd7f61bb1f24cf90b260ee1c7d5b9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a9f17a86446c141fb52f4c9e8ed8fa2413fb097d1be012ea07e85f914233ab3a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:1969276bda2227bcc42a54e727396cb45dee5f47b870ce959837fa1875dbe005_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:efa982b675c05da5d4c6b1a2ade4f1ec23522eb86ca4a6b99313a3679716f399_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:18cd5fe35a976b9c16a2970b6a649eb10fe026d3106bcef25dfd8d3e7946701b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bf6f9ca57869c2fde5b4867d19fa0aa71ccac6d8150cdf5a0891c9edcb1680ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:00a85f07507c0626dbceef7b8b8b8b42b6fb52b01df9f03a8d05ab88790b82d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:1fb04c69ebe64698c043345149d43babcb2ef618aacf1bba9b81698988700e5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:64d1ffb5cca9744f1d40b60a7dbc3e1f7d5e5626054440010959ec921cdf38f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:c55d8ba4c9d73b6e369fc55531eba2cb6dee1bec005e2de01314d78063907eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2ab6c82efb66da7bb5e87c1ee8a6fbc7f0ad55f0c9cef2aeac2e42d21f63c3dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:55841fdf679d86fa7bf0bf2fa3af5942b53c0bd02c2716d0266beff6050222ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:675bec19098fb32a722e6d1f2fee5729a4fcbc54bbe59f16647efd9860239106_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:d29829f1a2a88be7f7a2ca1a6c8015102adb43019b88237d530fd19a0e2b2de9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:282dc94b498c487a65bd61f6a3367362b8317df73c78f0d64aa3e262850f07e6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:39f0040857aa9c105ee574b6b20ddf1f1ffa776ecd8c9786d852e4ba809e8de2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:82b11fb9368203c27ba3f5e98b4b3d9f97a5cb96f7dc85bd382d801b7c128aea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:b1ed49cf7afe923a5e1eee5487248119f2b35d4561dcabd5e7a078d9fb0824ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:05563ca722adfad1b608fab477162b684700932df96ddb9594bcf04564312710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:49a92ccd22e00880c52f9092fbac87bf5eb524f10170e9ed4f81b37801aae1dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5b8a58b3327f44cf7a19b5e3aad5856bc5b90089e4490e447ae154d4e92c4eef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:f0acf5c0aa2e087ad5159167e6ff3e3ec0ba4f78e6a3618a5cb7a044ed4821fe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:39fa83f2bb4b9100411e59a8120e780e7cd1484cfb88d7862b843051dedf7d23_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6b49764c5d905ab2656a45d4f993e954d88915a46743556e564caf064cda4a96_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:8a15a9629266f1a404b96be116f1ac8ba2c275cbc52ae0f0f61ef59883aea61c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:fd60f00d8c3f2a0ad2b826550218fc456aed59d99a232b4a82aec70c9d6ebc77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:2f9f3a5da008c4d9d803230c9f1c96d6cd6a907bb55a7397ea334cd9ee69ee10_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:36dd5adab1d68ca971ae5d5f3d93ab02183cc1ac0ee738986107c1105d737dc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:c3fa84eaa1310d97fe55bb23a7c27ece85718d0643fa7fc0ff81014edb4b948b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:daee9abd05b5ec0faa9da6457f93a08300211ca4d67f978df132e142e30a5378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:572144cdb97c8854332f3a8dfcf420a30632211462da13c6d060599b2eef8085_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:6254395aceeeab914ff893ed29a85bc48ecef15ca9fd22d2bf7eccded39706c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:872f1236600eb2fcbc4d32f9210ba0264dfa557d524311ad4f84f75e6e9db193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:8e73f85488017219192befcb2749c90d44f749a7540f49ba094f182b538e0f6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:1582ea693f35073e3316e2380a18227b78096ca7f4e1328f1dd8a2c423da26e9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:16939635c20a141ae9437f1eac72d17c1dbf55a6d2a9f7493f69887478e29ab4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a5ef00906fe7019b582730a54029e9c78be97c2a25c4231cdb17d1fe01f102b2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a84d14b2fcf141c1b8fb63519ef7bf0bd99c73db83a89e015da4a998f85a4694_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8b8a686c603339d97bc2180488bed5912ae1ff3dddbc3bacd5c7a95638996862_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:8ff40a2d97bf7a95e19303f7e972b7e8354a3864039111c6d33d5479117aaeed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b25ef26bface5d6d174643938888de49c315eab7826106571e3530b63cc4b45d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:feddc627dd0b6bd8909c2c20754360acf53a2b7349272341adafa894680a3fa0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:475ec721387c968e5fcb29d4de9c36721879da4f1c9462093fbadba7d20b94bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:7de4d0af26994f1d9e211013c7134c3e23e0dae7c5483986b82f89a6e85227ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b464cdd00e3ce99c65240967b6454cc9469bc3d007d88fe69b1a5b7445ca7974_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4bb42aeafdc948dd06cf41d911e8b7f72cdb717a5099aeabf4cc72c3eb7ffd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:0e1853f8056d4b1b5964821d5fb8bb7aec7626aab6948b66c06f2c97553fb548_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:c8b2a4653915764c8132092ce59d4e26897ad2879d5340c31f88427e0b42464a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ce471c00b59fd855a59f7efa9afdb3f0f9cbf1c4bcce3a82fe1a4cb82e90f52e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ef7aa8ca1208a4226a833e5cc7c04385ef603300dfd1b3b85de2f218d5469793_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:0579c5cce9ce3f9598386eaffc374ffc10963d5fa07ff2d2f687fbfe7a3ae8b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:9038e8ee9d64b0b5e6f80f850746a28d93c59359afc99e2cce03c088cb01acdc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b4babe2a8ff9e670a2ebce1151f5df51f960d498b77da69a0312c5610e0ef7f5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:f0d9c600139873871d5398d5f5dd37153cbc58db7cb6a22d464f390615a0aed6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:15ca95ec6be6e8857e32cee07ad1fa43de52744052e13bf491adb78727b68357_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5f21a128b2caf150554d523669a2f456815db7a51fb86f96d37f2e8ef7084894_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:acc78251df5bfa041cdf75327b53ae6db293217e7adb19da1e03b9daf1df0e63_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d87e4b32e4a1980f9db7dc30cdefa71d986475f9504265f3eb3ac75995974ab3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:4b629782590276aa9b39be7412356d50cb504e922768206ee790ff73598b6548_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6acc7c3c018d8bb3cb597580eedae0300c44a5424f07129270c878899ef592a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:8d10ad5009d3d449e3bcd301e3333e0b94057571cf3fc74e533027969c89e127_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b6345d0d816a27fc50ab1423883741862b92b676073647432fbe36d162c6e970_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:1f6bcf8f36151aab99da41127203a1feb645fb3ed4d8d937b6ce4098e2f0c8f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a65bf0c2c640ccfa0187aa821a088715b75d83e799cacee44610f99f70d89427_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:d21abb565793d237ee50ecd0f9f9cde968f84daf4e51c8804079620e8c281ae8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:e3151b65826a36dd56cf947ca923ac479251eef3620d1e27d940bd5e2ab567f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0a31d5e4d212043393212d593ddf0d2ca3ea19adab0bf9131816441e0fcc17ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25dca4df67e4b3a70897619ad93192c4d9d0de08838a29802cc6224adc5dba88_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:55fa3830c7a456c1936931b95a48f95e6e3328ae5baf0681960936275760ec7a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:82cd4ebb90433af336e77119077c04ed6f3af483070ae14276f66e7a888870ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2c350b2943221690297fbef4070d55b241927ffa462ee216bf283cde3325ab33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:69f9df2f6b5cd83ab895e9e4a9bf8920d35fe450679ce06fb223944e95cfbe3e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c2ca0f4b26b7194be7bdeeca1ca9ef21470b5fcfc4410c24850e3312dd4be82a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5681b9dc909094c9153a30f80381daa50e9a5c073d921e1212f1b4e97e8077e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:0496eccc4b1c64134682189c8ea868e899662b54bd5e56ba34beb58d834891b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:12ba21bb621978fabda4263bb17c2459489e1b9ad15b4cdc2c49a13524fe63d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:86ce6c3977c663ad9ad9a5d627bb08727af38fd3153a0a463a10b534030ee126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:b42d1db6a12a69a04059f1113531a826cfa33a90997c1ab32fd9e144feeb002c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:86d9e1fdf97794f44fc1c91da025714ec6900fafa6cdc4c0041ffa95e9d70c6c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a352b60ff2265c98f33a346f7047f43c4a13e13820147480e9adee5e8e3a42a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c191a4ce07d55633ea2fedd908678173c67f45b60c0c247d78b2b2a6a7b8b805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:fb3e92db9f267dfe2f926be782589e362e4cd29998000eb1d3330a3632c18b9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:235b846666adaa2e4b4d6d0f7fd71d57bf3be253466e1d9fffafd103fa2696ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:69c302194753f9cf5947489d285df4367165a151d7e41d4ff63aba4bd53fa764_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:b1046f9613c807df3ae58ee58ff8eb4da9395b9b04887a9349aa228371a9eccd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e6c64f75fa5f17425b38ea6fc794461573e16e22ed6bd09ea5eca608310eaa59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:034588ffd95ce834e866279bf80a45af2cddda631c6c9a6344c1bb2e033fd83e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2f515e50b3968e2be980b0ed15db553ca1871cc86d8656643747d8c351680343_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7694442d45be0acbf91b371e06a42e332f8108f0723c0375340fd154c9f16541_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c269faa9099db589bef8f54cc26891905b8fddd2ae772e2a64181dbba6d7aefb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290faee243574b9117e2640bee80667912f6e45ace81e5c9403e7a8090ef8b39_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:aa1458f8bc13bb609dcd433b310ac9f12a07999f527b49587e12cfb22b3360d9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:ce89154fa3fe1e87c660e644b58cf125fede575869fd5841600082c0d1f858a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f058a7937ff90bcf50954701a222e090b57ce650e5c7811d05c1c064d8f5b9e8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:001b65fa053c48e157e501fefaec0052366ee437f4607ea672d84d7087954277_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:11f566fe2ae782ad96d36028b0fd81911a64ef787dcebc83803f741f272fa396_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:5ac2748133af3882ee735f80ba6e4b88d4a7bd24ca22ea8e478555d9ab33e5a0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d81ce04e9bea535bec9d89141478016e730689a5707a8baa0c00b759026c9ff1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:0f9d50a67f2936dc8afd80eb5e2b9cedc165635f236e4b08c536229a15108bed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3b301b2619199c79029a1fb6149d64ed96abb0b71e1211e6032cbb7bc5bc56ba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:57c743e6e3d3cb31bdc006be58b4b81de1cb2f056a62b1950ef23d8fccdeb103_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:f86073cf0561e4b69668f8917ef5184cb0ef5aa16d0fefe38118f1167b268721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:4c4a70a20123345ce3548301a540709a6339e5b1fad1515c777cbded0aa6a389_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:80e0bb13123a813d860e9daca48c7ef3ca87bb2fd587bcfefad8a1400dca8a9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d07a747219ef43f0596123060e1971fb17aa0004f9fae8023c2ed0d43b1f21ab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:d5f4a546983224e416dfcc3a700afc15f9790182a5a2f8f7c94892d0e95abab3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:228df8c4116e9cc1d1334b9d4e0b86a2ae61dcbe025b5ca0dc94c5b360893f06_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:3c07e2eae23213a2ea102e71da18263ffd58ed81de619aaf21c682e0071b91cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:67610c8356f8c0160751c862b5c48a31d7863900f59bb49ff783429b7903b2bd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8fd63e2c1185e529c6e9f6e1426222ff2ac195132b44a1775f407e4593b66d4c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:666bd0cbd8d031ee31ff307c90ba18584d5b9b393f7c2e61981db20df590a595_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:6e25dd0a898cf8b5e9a2169fbca2198447363e0d0ad97695cb0a7a63e230819d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b6b87cdf2c652a75cd500a9ff044c94c3b6eea6789ee25456e2eee21aa2ad681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b9c77f2b7eb832b9afa97d332af5e8b2468e6b58277c6bed905f542ef661ae48_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:423dbc80e06df006b74c42324e02cc43fa28e66fbb0c463cfefb97287ec16753_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:64ba461fd5594e3a30bfd755f1496707a88249bc68d07c65124c8617d664d2ac_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:7e39372ed28658b9485e2e73bace895024da14e74dc1b9e4880a1ac13e3499ad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f55f624513b451b25f77238506600b52851b6d93f808275f2b467133df2299b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:148855fabf79afd75b0dffabd1ebf7edfc1a50182b6560be6eff195f5efd6b02_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6887cc98b25b3274e7e0d8cb37143391a35384b0c4b57eab20e66a78635f8456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c8618d42fe4da4881abe39e98691d187e13713981b66d0dac0a11cb1287482b7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:f40507ffc3aa5dd22e066c7111a93f9c883c13b5e805f985d8786e7b1708654d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:214a2c38ba112ca4ed53f59176c2ed435d4fa022194d143cff90a1525746ac0b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:4c735bebf4c3ef8eec462e13a6016cf3cd401d9f99d5a6c5c2a2af44fa51d12a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:758c7baa673faf58bbad840de5fcd9f804e56d5143fe91347b06826346d00736_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:897708222502e4d710dd737923f74d153c084ba6048bffceb16dfd30f79a6ecc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0335a882d7634711135477c8b7811260afe9593ebf576da7b55d7fb3e46e1867_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ba8aec9f09d75121b95d2e6f1097415302c0ae7121fa7076fd38d7adb9a5afa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f686554c76270d0edd0fb4322adf5fffbafbacd72ede0fcf8c440dccb34ab07e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7639d7b2dbef389981680f9e359c4f543d3c90d6e7eec771d147b0ab2b02e73_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:4797a485fd4ab3414ba8d52bdf2afccefab6c657b1d259baad703fca5145124c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:654839ba1c0313212ec109d68760c72766620c17c9967d949672200e13f8102e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:736c1ce198947ca6366a344e074f07b100deb05adf9ecd39a11d8d5694b7289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:b4064e0ae11f4f792056cd97ce0f62460b33076a8b1e9cf66f20f16c72b06b5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:053c73cd895f06fe198eb99e265a779c0e05a8ba7739d9ef541552eb7ee97146_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:05fc9d7eeed7d313ffc4595fc39abe6634a7a81f79fafbd5abc0dbc6c54a034d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:7a8d83af4f0bd29722b8ac30a614df9aa9d7ddfc95f5a84ba89fd7a3b4683014_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d5a31b448302fbb994548ed801ac488a44e8a7c4ae9149c3b4cc20d6af832f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1208481949d9eb7bc3525248b61624cc5d372f7d5886375ca00df471b097caf8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:18eb04e8cd3e1ec49299993cb6e284defe3c1c70bfb6f4846b5bd5de97d92b00_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5121a0944000b7bfa57ae2e4eb3f412e1b4b89fcc75eec1ef20241182c0527f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ea489a243217c467c0e31adab05de441d5c209bbb7bea7a8dac1c281df24785d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:0f537ca0528fa44c5ed8fc4ebcbe0ebb37ec6addee0e1065326f57b8b06ad89c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:2c8de5c5b21ed8c7829ba988d580ffa470c9913877fe0ee5e11bf507400ffbc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5df9f7e924c6aee13ae5700a4511abd1c30b9c429af669e7e5bed36604b839fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bb8fa0d719d4689abbe076af5be81897a0c7df0b91c001357a21e7e7fed18810_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:2c3825020235b0716ead253e778bb524b2ae5009115e013dad3924509df27fe2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a9dcbc6b966928b7597d4a822948ae6f07b62feecb91679c1d825d0d19426e19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bfce391c1a9c6ce9eeb1b4d5b6b43c1bac952ba10a272c4877e935605117cf2c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ea9f58a93e627185689f6e4ec8aec2b700abdc7dc7f82fdfdfb07e325701b54e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:672aa6c23a831d758655aa4e1009995cd0c226c674ea37b03751410b9f1cb5f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:79b0239aec9a112db09a29b2bf4523eb9e6f0a6e9969be2e07e29aeb8bc85537_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a6b679b23bd7f5f796922ea6600de10f29b3f5713052e50efbccdd4bb06cae62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d7bd3361d506dcc1be3afa62d35080c5dd37afccc26cd36019e2b9db2c45f896_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:457c564075e8b14b1d24ff6eab750600ebc90ff8b7bb137306a579ee8445ae95_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:69594ff7f8681ccb3af90a1918f6f12e0e4aebf554f6f64daa33cb5f39b50218_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:a3a4ff1767135bc7dbd41b17c8250477b83434d454cf787bf1615432c035207a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b28d47d63a2ba0ec178b599c03e6610a284f316c098217608c169030e9d587f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:141bb663c978e4951a63d39525f6ca4dda7cb084c1519c6375218a3baa371ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:17a6e47ea4e958d63504f51c1bd512d7747ed786448c187b247a63d6ac12b7d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:df09c2fff07dd7a61de39bc39fa047c7bf449d793fc8770b9ecabe64c7601ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:f5b4882028d7c38f0c76ad661ec606c647954ed67919852423d599f8baa66ded_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:1a1779135006214ad4cda8593e05bd52b9ed2a9ef4d482a0123bb4bec223a015_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:308c6db5a71dc530f307aeebddcb04430087c9f6790afe6eb741d231b2fffb78_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5fb169240b6057caae234e0d8fb7d42589345b2624935192046a3d043113b3fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:a1b426a276216372c7d688fe60e9eaf251efd35071f94e1bcd4337f51a90fd75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2da5f7eaf98b58e98fd113e930326a65c7eb71604f7ab3f5f7a40131281d3a01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5e71354a86d56014106757abad6107b4e7b7ad7f547b580fee1bc20958831002_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:c1eaff8eceeb13e96941e76484644c74c88c7e23f28c99c8a9d6260837856e87_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e526806bd1ba835a51e3b0adfd8a63fbb1d39b87d9fa37de4156670204918c82_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:496cb8f5762186d81bef15688eb0b5c4d3050086f4bab9cbe8da3eb52031f05a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:499dfbd020a7aa4133b6f1d2de85f624392be9df93c5b60b561e4c34d8d5db13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c02f0a1eddafccaf193b6aa97c3b65191d63805662f8c9c33b995f298baff4a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5275800a7538c494527d92423ce1b70011b32b7bac296b6aab9f54b90d8f1a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1694c0f37e94bb7910687be158937901cf0025cc0181ffbb2aa6a9ab9c490813_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:8106d6f14e7cd1fbef2415e68aa8d445d86947018b36132ce2852df5987dc227_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:96a059a329d8a943663a456fddfcaed6684d141d71b570c25c5f8aa9bd3abba7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:db705b14c9ac9b9d53fc96e626dc284d0b751dabb8fefabee6d1e80c1d73c736_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:162485db8e96b43892f8f6f478a24511aed957ccfa78c8c11a04be7b4d08907b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:8f07cce68c0ef2250b61b9cd53d6dbc0d16b85cfe5049df53a1fbd918bf66d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:dcff44a998e64eb0143d94dddeadee976ab9cf1e0c3931e9c741226706f24b27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e89a8cc1d7a7fba9a333a0d0035ac91ba229b86b774c70cd717ea8b5d78afb3f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:021a72c14288397c9ca9420d686a259d2db81d00803bd406fdbbf9cf4d413c4b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:02b7def8b92b074715f8fe7636bf98a96eedad5e62cf533d666a094115d6a229_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:6a7462a57f3b25a5fc080fbe5daa50e2a5ee09b80b1f3015abc184ee079fd550_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:ada2d1130808e4aaf425a9f236298cd9c93f1ca51d0147efb7a72cb9180b0657_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:3c467c1eeba7434b2aebf07169ab8afe0203d638e871dbdf29a16f830e9aef9e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:94f55e45677c7167d8e407223dfa2ac4f571a935e69af0b3ed5dc8e8ce76a805_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c10903770d3384ef78ca902b5bdd6028dc8d74c316079f68333d286047b64ae3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:c8e1a8dac72fdb9b17c89cee86366211ee0142a4fca1ece2a10b84e95fec0f6b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:59ecad34a389c6e0e6d316d260a4b209b3b28480a0a0e870129b44f604d61cad_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7a132d09565133b36ac7c797213d6a74ac810bb368ef59136320ab3d300f45bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:990a5a326d469fe0fec9c32423c2c6cc563dc6bde1a7f10316df1ad5715a60bb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b24a406a00b04e4e374869a24ff0dcc1958e75f0a337cdd0f45ed5ac0221ca36_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:85af4cac4505180c4b8b006cc07b053090ad185c285f71aff2e4d515263bb387_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:e735baa42dc6df8f56fbe9358a83507d37d3ba2ccc100cb92ef10955128dbdbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:1beccd3fdce62ed5c1b72f03353dfc5c78bc2454777159ee1fc8db10ce38c4bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:56b3eface66db0e669d123af28686a68e811ac89723efadc59da5f8eb7837345_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bc37cb8b2b975fea23686f5c347964bc6ee2a2088a282544cd616f45ee0df50a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:d3caa86fa375703e133b3bd04039e0e44c57ef8f3280f9d6b038d2f03746eb5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2d09851c99b98b869c300c1d0a8bc3c4c70f2a3435654232ac09fe58d9e337c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:3dc8ce4816b1bec1864d29c6450153f219c8ad379f2802c8125e009fc35b01d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:659042f672d339473f7c45b25955ece7c8537a1486b240a2cc594a0348b2699b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bc4bc3182f8eaaad6b5306bbf5fde70b4645dd2b0dd03edac25a725aec04711d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:95cabeda678719b2faf3b0e15d436ba8916cbd8254019bf3da7544774eea771e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9ba0e90f28a11477a4ddcf2aa8cb8c11b63cecd5f31025e752e8ed415b011d1d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ae20c0b132d29d4bf57247a5d41d0810e4798d56698799763bb43d35dfae98ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:c4dd7c7e4fbe799b3f1c5621c2871a3a55013ffd79a2b17d2c989dd6b4b379a8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a26699017a074758232d6e2ff439cf2b1594e334a94384b5641652d43c68439c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b5bf260f9bb117e4efff5406f242186806859b0462b4af2941b82e4f51f8e90b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fb58c53e8a21dda0a92c07a90d72d49160e2afa87624df9ebe9704a80da06443_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:fe517eef8d1296e2f2662d0e341f4866a54608de13847526e92231718a7f0a3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:1d64d3c0694aba319c513a692bee4670f22bef0ab4927948d059a976a79b5c26_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4751ee6d4434f4de5984d6cacd3392e123035ecbe7fa29826a0276297266f88c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:64f3679609790e33a8b98b3c45d7a608f1e29d9c4cbd5616af62288f75b7f303_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7ea99e9a6abf764e7696b9cf1019671ab482a837fdf4b65d163cf158149fd53b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43c810cd25c3d346d4b8e54ef202e593e73947c47a9ce8debb3b1b71bf9238be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a93a9cd552629e22bbbebfc1f0922ba61eae6250adac9429db7eb6ca6f1c176d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:db164651a974e0c8fe4b26e4b7bbf5d157a22004b4079da4b4f97dc9e650a814_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:f3de2d6f4c1a53ac0cde21d5effba8178bf8f5d317875ed78ddd2c997c5bf176_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:42dedaacb1b9f89c0068be2248f4e02560a2216b5d63df34b25b21587add3b88_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:45f2a43f443cfdcca1a992e86aecb72650b95eea450d29448667fe658ebcfdb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969eb3a72e454abbd59156252a066685b150f18607a30a324af337d02a6f2066_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:c3c3d84a4e0d0216239f607bbb98a3107b7d09ba4ab2424c5dc54acbfca7a279_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:39d04e6e7ced98e7e189aff1bf392a4d4526e011fc6adead5c6b27dbd08776a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:42306b2098c70d3177f7a60f0043e9ff2d46e5a4f0438af6cf8ddd40da0bbdab_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c42cec5b43236b33139a994fb3126116340d3c54a82ccdaeb80e3f3e2a7c5b51_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:c7a585aff2a88ead661f3b37bdfa34a36c70d981f81b74d323a32934386c6edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:67f811807479dcab03cece0624bc6835b2f140c154b49e2ba8ef6f95c8ea169a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8a5b096f88e6cb861e9fd2301f57f49454203974659182c02d0b7aa4825a44d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:918bbe208fb20e337d2b36d364a9d06e751bff18932ea27a5c2a161822fa4b2b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:d953b34fe1ab03e9a57b3c91de4220683cf92e804edb5f5c230e5888e1c5a6d2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:26ae8be45fe50f55f9a4c87b570310a5f64c19c735be28bb7a100025787f0dec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9f7696d1b64ead0774673351c499ee16767d70377e61264fe656974827316df3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aef1ba9b7599a453865b3b627f747b0a4958f634f514b2012ac8944f00141f74_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:b9d7b6d96368dd4bdf63ca1e1119d720ed110c5be510108115ef03ff6f989bd6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3e7e373bb5b761e58b375193080d7189ad597fa23185b6d9d88e70180f60d84b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:52ad70cb68235011443fa46574b52a61e131d85265df271486f66c52271ab8e7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9cc929a24b77561f95a99c01658031a5280a0eb4df9019ee44904bc3be39dee9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:e72db52a88b87b82678bce183d47cd9e5fb291b5c2822f108588f1f89faa6007_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:016ce2c441bfe2106222cd1285f2db09e8cf3712396d4bfbb52fdacb832aa1da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:5f7904c479ee6401883eec7684f08be8ebec675a85fe96d002d06e1b6008a985_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:809709c83e0468b6a665c8db7f9282bdffe029c1fb44f000b2492166a3c53abe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fee05c5f31ebc648120f9a57cd9bda6161ab64941b2f9d95d8e878c43532d48f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:2639eb029e5d1eb27501dc4a53590f396aa150cdfe2ed43e4744009e62288d5f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:4fc26ffbd5afe5ccc5ded9780c433af09a6e5208adbf431f8df62228681f7f9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:c6179e99e2e66610e8b89dbc1ad6adcdd9292245c49742a5f389b04edeb64eab_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d77a77c401bcfaa65a6ab6de82415af0e7ace1b470626647e5feb4875c89a5ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:39a2b24d58ed5e03e29f1d629fcfa413556a271f8e550d47fc5da43a19a54ecb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:ca52ac4a56d70ecafe95bc5801f9db09ef0690a658007b9e7b5bf46bc624d6a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:eb9142ccbae0df7fc05cbcbfa5f7816064a2ccb31dc4ec3fc9b7424c1cb694c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:26b2af85467446a75fe335c86cfd2b54bd98424f632eee157861b82354a15534_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4371b3f2da0dba7f1f71d84a8c7c76fafdf2c14f38c9c25e6909c39675a9a411_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:f42ca3beeca10ebe82d8ccd23fabcf1f17e4cbdd581f98077e1f9bab4abed1a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:40861655fd264039914ad8956d300d81f9acdfc4b10fb4b824171428ad7f86d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:70cf8baca0b97be2aa3aaed14bdcd175214456a4155153d937ca8217a050f63e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:c1fa5647376b38105d39db0b845c24d41087d5f6c99e6a85c5de756bcf77d64e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:254a40c0f5c4c40bd3b09dbd9c38a7d840a8525cf08584c2af514b18eb58e929_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:a1ab61432f3180cea78d83d4610c64d3f3d3b6a6fb4446ec61235bd69f412ba4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f4f34bd9cf73586a7397315525e42e939e22159fd5400cbc2088ac937d6dba7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:1c4169e348fd1c867f28996e9a29594ac1ee00cd3d7bd08e827011e9cd369778_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4941c1100e263defe35ee52d4d5f46e34c5caed07751b9aae305b59a83e391bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5e1eebaf7d7171615b77916bb332163e206b92edca1e3f758c6def9a1518be91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:9a492a8766a7f2f4798471af6a54a0914441f2c6f4b8b5ac92b0f5759a78246c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:05ec265936d6ece08c9d04cd7b56f9dd345f190843e8089e03df5ae190ad7b2d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2a3da1b4605cdb3b899fdcc5b15133abeef56aa7346aefffabce5924f7780fb2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:98a8bdc168566e0dcc9195539ddfeaf41322f62c4a4047215d5464a596d21894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cb94366d6d4423592369eeca84f0fe98325db13d0ab9e0291db9f1a337cd7143_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:2c6764de17d75c8f8a9ae6f495b41af69d795b2037abf88254967aade529289d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:8177c465e14c63854e5c0fa95ca0635cffc9b5dd3d077ecf971feedbc42b1274_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b7aa8d0f4a03e3131359551e163be42ffd5afe5ffb118c39bb61e8322b6cc20f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ef39cc80223976da273d4f5a7d44f94352ddaf332ad3261435c170a46945ca8f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:0201c9bf5fbf7232c593e506e676143ff887ce266db48318f3e6b27060bcc972_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9d085a9bec1ec8e728872316c2129a75e4896b6a8e61094beaa4e095c3a818af_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:9fee14848ef2afefd423274d484be660cea1506bae883cb4032ad3b6303f92e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f9f023a86b987abd86fde1857cdbbd0b96693cef932e65dcbe29008d489cdffc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:24380f9b300bbb95e969433286f15af9513ebcc841a2822f5e5eeb8981f4fa7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8a5456844cc524704ab3eec40d56443988d732ad043a8cb95646eb8c0b9f498f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:64500d16fe4957666c4203f057f7909fbce3388b8c4e0fc1940dde4eddb422b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a9111202bd49446b72d101bf8c6df61f5830943b010fa5d74949d9b4264afce2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:47d1cc55c8b7adc0a276101a7381bfeb0992a5784f75426a24fe4419f4ad4ff9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:ac5cb5373c4589d1abfa4ec7b15202f14e92f26abd1f8e970a80b0881c5c258d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:0bffe755184c82edec682b83712910db2b3787495aa224ace6a9d5e385996696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:6d8b5ab424d3157b250f353c5c1c03df86924f0fa6c395671bb565bcebea1dda_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b86f1255fe845ca06b00f714655d8d4bc3a8d82d6036aa9b44ad4f6ca123d751_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:32b75ba4bc89af270fe55552b70fe2db6fefbdc368adea5702d58dc16f487021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:3c1a8bc561e5cf205b7f97d78e02f35d4ac7c77e302c613e4a0bc37c55fe45e5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:69d8bb8fd9c3ba319b9271c2facb9c1760ab72aa17bbab461733f173a45c670e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:f6833626a1c886255e17b28ffdda8b2763ae1c97eab97c63dfa635c84d2a1ef9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:1995c8f5d51114da82ad06dc3625d9f1b849439e97072a39a6594b28b281df60_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:55b12558b18a5804274315c24c7cb42dc6058f491176fbeef6eab68678230005_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:9f43a2354a11831c9dcb3523a502ccfce58fa5642c9f280154e8d742afb04926_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:ebf883de8fd905490f0c9b420a5d6446ecde18e12e15364f6dcd4e885104972c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1ebb7af128af60b0cd8fb3ea3580df63e216e626d521ce69e3d371281c547cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:532c9a7dbb1ed13fba2f97d4f746081f71f6e96f0a547cd339e12c88ca78f32e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5bbfcc3c97965e7a0f29c70553e89eb57e8640895f56064c28c47fe416516b1b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:aec4595647aa410cc6d91dfc09ba915dc87a86c61c6ac126f707356e105e8fd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:0e5acaf20eedac40be2957471a5a7db47514b1c0eba99914cd261a56a0ba5970_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:84c0ece2a6b52ccf9eff139355036258c2bc6a1dd7a1f5befe0687d975de0fbe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:85bb8df86a49482d07d742edca1df1e9f45d84aa8fd837edb1af56a88ca7cd2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc07a66fd4281571469f8e797959b5aea4b2294cf4c26ebbdee40e0dd25e2057_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:b230428049c6fe633a8e44692f9ec9b53d3d4d1601dff49487c7073097baf4c3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:e134721bb9fcac242823940606117865e3fc5e59933e98f64ed6710f580d9347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ea81fef1ece0b1636a432233a6a7971285a9e93460afcbfa9e5ebfb7c0aca049_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:f466bf5b420de2bcbaaf22830a5d377bac77ac462548ed23b0a7dbd2def42e81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:15d2378b247e956f03eb778c117f36a63357f65b05eb45faf38ca9bc8d35cc9c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:80febce17cc35593ce1cf1ea55c1ee7abd44275280a61f910bc15956441f28fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:4aa10f672f0697320be05f5a8447a1a9dfa5b53fcea5855e3f8d41dbcd9f94a3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:a46b99cb41d5d78b8b80292696769febdd2c734ef396d06d4231a6d436c2dd69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:1d3e4ea3344c7c6912bc28cd875731831ff60e36441c39c46fa267fe7561b421_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e17b8980f26b95abc07d975316042db691da1ebeda374bcd371b0787da49fed8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:064ee21d8b6a921054b46b9b0bdd9d56f180ba8e4bfdef88609474304b20c588_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a86d195377d07917dde6026f81720eb0d2373212a6a81aab8e0fdd02f5f616a1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:252862efb9ece30d3c9e9eacf8190c2a34111703b95bf2d15a767f154983d94d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d0e7d52ab11e6dde54cd8f67717a57022ef7e598a2496dc72de46273d5415de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2d8e2d81d144ed24226944587b016082d1d4f014afc91550432561a4685e6784_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e7a5a7a50eca6b8db0261df8ea22659f63c0e7faab2e39b9898afcde79e0baf0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:57d592f58b344069fb966b7aa355bf8ecb4f4de0bd6be01e59e482f04cda6be3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:772b40519a7b3d25df08e987c4bab164e9fcc2ee605431b5e37a1a7fc4b62820_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a35674598116548a5ce2f581acac033b76f22fa1b8522cc81b90e27feda33ed3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:aec796376dc5ca94106c534c723e7b1aeffe18ab37f6d1689680ec44c454c32f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:63db2308587d575c3ccfa3687b07dddcc73591b1108ccf62248db039ff7205f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:77b1d29e93061a75996f874d81f232caffc14ad6f248da73e64f92e2fac5a132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:cb2014728aa54e620f65424402b14c5247016734a9a982c393dc011acb1a1f52_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbf19000ed185cd71f1e9053edd8c3171be3d55035b805d6e3d2a46c8bbb21b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:01ea232697f73b5215c5c39fa47e611d4ff813767225d8c13d0461023e9fb71d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:961a716e4882eebadc7f566993b671985764758da27150ebcfe6b5303b121af8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:c51b6ffb4ee08f8782df4617e3ca4d25203795d469c41548a1e10c4b4760fc0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:df0b6574f364d10be7a5160e8072eeba763f93da266f4ea2fdd3f5c19b886aa7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:00be39d583b7a7a4c3bc558810360c45c22c56ea59d1343c92b4ec39bd956888_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:56efc6b46e3006229084a7b0383488a463988fec35273eb5f57afeaad111e7bb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7eef7d0364bb9259fdc66e57df6df3a59ce7bf957a77d0ca25d4fedb5f122015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ea4cbe3d456f9050c79127088529d88e23e23dfc0831190cb275d822746b7c7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:36d6e538004d505923be764e08fe41be02926da4b5ecbce20f76e4217f47c282_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:61298b472f7db493d32f45f29ce2e27d141bb42efcedcbea3ae5a212f026edbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9f1a63c94b5faac0642788fbdae5a480040fbacf0431b2db2de062169366410d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:bbaead0995f7033c9ef3d8de09884a744cd41b8851de0c0fcfc282a2353f8f59_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:47a7e15d87bf3afe0b9905ed16de23a72d3a60c9b2ce3371a2d19a0c13348717_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:5ab1f793c54f057b31df94723adff616b1dd30aaa93d2bf9335d57f5e6997336_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:654662275bd0a8e3002f1dab4c86a368ac65f6f0c0088245734fec5ba0ed02ce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:eed7062dfd9d3f81c9e0ade4fa7b03bb52a348611c7c24c17db14a26dcb245c1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cc626231de02cf781b4dad3d53e2fa8b247a7e23be8f6a0ab6e5d0bd595713b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:c5baf37f8ee3d0b5babc940b23e652c2d511306121569e30479b2e2ea3534806_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:1582a6b3d71048c5aa4bab5238def6bb283d399b9b2231560cd5f7a874120373_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:77312d380e31e14cd12f7f39b96420dfcc27414705f770c8e6fe6ec2f4afa14e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:44a4506834888384c731b39bcf509ffb76042dd4bd8d06bb00992d57edbdefa5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:6f0fd2ad49bd6fd85ee0f18240da5bbd52baad82e3ef0dedae77a97fe22355ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9a6c83dd64833a7673a0c971a1daf6b0d6d7e068f51ee2849c9e1bb99b356c08_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:11258958e64c8ff8e37909fe796cc86c83c28baff05aa5504d1183bcb142d09a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2c672f8d0f0e8e88249cd0aa4cdaf89021c41e5c8ea8fd418abd628ac493ab91_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5aa7a2c1a4d70ff320ae6e4fc58e2fee852a252e77cb582928e25046688c0ec9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ebd749168ee41745351f0626cb88f1b80d795848c4f84453de91102a0c301111_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:31b636e181a5b5ae956315292f787a01bdc522c053de9ed626a5449f29c1463d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:572b0ca6e993beea2ee9346197665e56a2e4999fbb6958c747c48a35bf72ee34_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:6b41d19c51183484385bf3cb103986b539abb6b516ec597220e4fd815abe562c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b76963ac0cb2d6bd7e4931c7dcd15747ce989584682c5fc9dd3b3bf840175702_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4775c6461221dafe3ddd67ff683ccb665bed6eb278fa047d9d744aab9af65dcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:9f7667d61343c525d8363facf014f74adf8246fb6e14745e65035b0d6a8028e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:b195877d43e108bacc63878cb0321a0c20c4f2b3ea2bd0ca45c1fc5037c839d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cfdb06402a0b7d66b084b529b86d59ab1f60144f894f45b9d2f5fe67ffd7deb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:0255ad881aad39691b35ab6953aaa9147a68fa6f9dcd20d3a0ef402df3d2a983_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:cb28f8744dbd0fe016929e500e00fbc6f4576bdb21d9289f559d41e33becfc63_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:d37a548447a1bfa23d546e9e1ab2db85ed9084ab18f769b666f39c8ceea79ef6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:e32182b71f7ab8f33efd4272057183f94cb177b597edb999d795af2e73f917dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:14ab16d0cfd8edaa851daf8c75edfd47296a05b1b24ecd904aa7ad879832e036_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:2625ac00046f3f6ce16dcb2ae0036ce3ab3cea55f019985e500698243b4ffad5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:406763180694a6b4a2ebf1ffec22157fcf02fef3ea767f32ee596c6755bb75db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:452789816cf02f88eddf638d024d6d2125698d9785c75aec4a181a4b408d947b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:24097d3bc90ed1fc543f5d96736c6091eb57b9e578d7186f430147ee28269cbf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:a62e932f4ac034a8b2ddf42fd0047409c42cf083a332cc31ce89bfe78c2d8d95_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:ab81d6b976776107a26b2f2d80ae092e62f08c9692fa158fab6d0c8924a14012_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:fdbf749eec5cacc88db1c4f97c1f8f13980646b1d084829fbb61e9cdf043f28a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:04fdab935342abff1bfe92590c5ff4610c92255d567fbe92a4f594e7b1009091_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:0587eba4851cdbd3b3c4474a15599a74b5af60dfde6dc105f873f04a0a7ebf0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:40c680aab7d94d9dd65711f8fd0991d620b26b0585554a66fff18403dddb72ff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e8adece94d998542ed5a7400aa21b89a5ca32e6d4691fc6b794784277b8ce4d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:57346b2d1a0beb757f1efa5c7a568a99ada626a2a4dd1986ffdc0fceb3833a97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d7a8ac0ba2e5115c9d451d553741173ae8744d4544da15e28bf38f61630182fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:edd1432f91e620d84dce614a123f8587e37c42092503d5b73bd803cf16eb3020_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f59363224683585ee975b68a0d19f7780e7219fab8815666eb23c5a5c81014dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:4152cebea96e2b9a15cdc77a9c318b7af0db9ea1352619dac282e167e6e0d71b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:973e68d1ab1f285a7b9d6aea9971d22570b6ab69a5b9dfdf0d233d28d77e199e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:ab436dcc459ab7dea20c0ec01c648594ac034e4f450bbfb1d389ed7748289b90_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b98c7645b7c277bf71faa1a4b2b1521f63fe8d0101e4bb68e4717cd9951dcbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16ea15164e7d71550d4c0e2c90d17f96edda4ab77123947b2e188ffb23951fa0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:79860b446dab2c19af046ce68747a6c3435cf6d69f9f1de984607224b818505e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:7d97fa07392b2b69bca2e09f84613d727118fb43c065522d2c9a5fb1cb38b50b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e36b1ed0bb4ef74b36f013bc07641a73ee9419ef423b614e2537492f15e796c0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:3ab5b88213299b531a10f655b1826c4ed27254e073a6f58230f301e0e3984267_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:72fafcd55ab739919dd8a114863fda27106af1c497f474e7ce0cb23b58dfa021_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:8a88f519d34cb6a26ae66388cc043ac6aa994d613feac50dd1f90b530a025e51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c08e118cdbf28ac8330bb0c5cf4cb477701daa01971a16dd02619b7da8abdd23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0364a8f825d911a6c0ec3d929b9e22527f4f404ca190ac54762adf1fd3f020f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:64f40c6a6f120ca98c5e57d970a3030246c944ba68435f81896c11087994009b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:736b68208a8555040d227f72e22bbf45bccb2417965f82dc39c81d87a2a91149_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:b0a9e5eac6528c601839f9a961e50668e1ae15688013de0086739cc7974668e9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:2968d8cb6d7e56814318b3c1079f504fb938197417a6b2c0a3e7c9475e933df0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5bf03add64331194735ce81b020b8dbc0c405ca5f6fe0dcdf20e5c449c1edf81_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b1d840665bf310fa455ddaff9b262dd0649440ca9ecf34d49b340ce669885568_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:f44a5fa45489b697d7376240fdedceb88b419d63eb49abd04605147398ebc60f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:511fa5a7e3550874524a5d9992d88949be8503f038ce8b9700b8432571ac0a40_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:5217ead1f0f27d8d059ec6f8b15b01fce3550a6149f9cbfca944f77de2b97385_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:e53cc6c4d6263c99978c787e90575dd4818eac732589145ca7331186ad4f16de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f45ee81a0702ffec338b639d508fd54e0fbf6ba64478e017476e7887136da8b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4a45593b160168786141a4d40df91c8674a65c1b48cfa2433a1ecf44c96d0108_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:77c51374cdc2b8e40f4cb17387ca0fc036e09131a809ebe6478b87055bc3ce6d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:999cb5822efc0e54d9668c2050dd7107ed32226d64921ae003c7d6121ad84d29_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:dbffd1dbbfea8326edd5142aaed93290359c152c805239f2ffc77a21b6648490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:2f26054e64d13463fcd6d93933b307b6dc73081550d3490d22d839115677173a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:65c35f3b287cf6416b91334cf2de4229296c51d3ddfcc110e977249d43c897bc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1e7ea665fb02ccbd20813f19ae0bd68ee3fdac8316792d03ffaee8641e41d012_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:2d07a2b28f5c68768fa0805427f9be5623fe66c3ff6e366e3c72c79e70226763_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:af1c31963b1913f08807e3035911735e56b43fc45f20f3ea99a974746ff87e55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:ce68078d909b63bb5b872d94c04829aa1b5812c416abbaf9024840d348ee68b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:9402e993deecac23229cb9f5a1bea6199332c13cfd62daef625d864da5466a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:bf76ca2ddaacbe570a49b76e69694f4f5102f3c2ce0223ffee1beff56dbf007d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:eab8770281ccbc7dfd3266ba1ff7480791a3434edb68288f5285d4fc72b46aac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:fb40abdfaf67e0470bf95c34acf72b721a847ebf919366e131ac537f773a8a32_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:3167ddf67ad2f83e1a3f49ac6c7ee826469ce9ec16db6390f6a94dac24f6a346_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:43a2964421b945492a295f46a1406ea4692121513a9dcfb1dc5f710c395c5759_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:68fcf96ef90916f0391c63bc3934982d14d5ade2b8238d5511ec3e9cd52fcfd1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b810620676079020905778f556a0a85275f565eb43c1030d5f08c56b4417b707_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ebce9570993cf9d5dff9299477df81359b620095c0844b3642dddac9b10b134_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:92c706cd6c74b97857fc75493cef1c22b862454a734d3edd78e339d6697d64db_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e65af716aa52b86db8a842ff6398163224915f8e0a6ac1363a4a63cd0be044e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fc46bdc145c2a9e4a89a5fe574cd228b7355eb99754255bf9a0c8bf2cc1de1f2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:039c606da5322356a09138fa4a760120f4254ed3ec6b4eb21f8f1df7040438a6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:43f3ea7a5a6c1d495921ea08d2ed9cdadf0fae29746ddcdaba4f1b4314844a59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4e8c6ae1f9a450c90857c9fbccf1e5fb404dbc0d65d086afce005d6bd307853b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:a9a94950ebdb0a1fbe369dbada39eff0b5445c35c6ecd336788e0c685f8e8fd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3e089c4e4fa9a22803b2673b776215e021a1f12a856dbcaba2fadee29bee10a3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:3f0d5a87e710310b4a8e07c3f72839a083d2ef4929ae41acb5e318ba2cc9228a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:5e7f5da82f8040d10c79be7eaead5485f01f5167ff60336ed4672b12c0c60191_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:a75ff41ed19c5e67a0b2e196c3865f7e832c8d83418333d05b0baaa8969f9425_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:314be88d356b2c8a3c4416daeb4cfcd58d617a4526319c01ddaffae4b4179e74_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3fb8fe1f1cb49972def0fd5b61bb1cc8e733d041051e4bc65af3eb83a8b4e319_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:6d712f2fb7f432aa8e1ba5c43ae04434eb91ab9c3159d3a44b5bae245612be4f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a7577050127d32e912eaaa4e122626f4cf9d67875cdd2d97c2403e7a31e1b64a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0ec9f6e3fb7c0825f2d824c60672c369b89109e5cecf33bb5e0c6ab924588708_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:445c1ab43a32ca84718ce8fc650164cf314d424d6ab61d245df98938851c6c27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:480b3a103acf0acc574998a2a2ae2c92e8d9bf90340660ca24aa492881c29ebe_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c2b054d3d7ad91b5d6ee1d3af052b2f7b067f6d99582510081eeff29a741d173_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:230a31dc1407f5aba79e4f33ee444e8a47474d2e3b4394da3521ffa117010b15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:54c5fe1ff230c81276aa61ea1501f8b78275f53906cfa401f2a0f3e6e953e66b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:e0a862ad834a43917ed63f4607c0e3d24bea50bd10d26c503c891634dd5f8800_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:f402e1c487162bc80c665631d098039737f9f3b1b7d52fc417a62fa4b6cf1610_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:2749ddbca88f771c314fec2bc86fe3e9b21f03a4c34696e88a3a1d98d8f7d04a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6b4366ad867c191614e3a63c3e33a0a86046e0ceabf68c2fc06f31e4c5d2f093_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6dfa02dc6d311efa39f7df5198170884eb714f66592412d1fa390b8cb7f11bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:db81af76d3c3e9378a88ac84d404257b2c39acb6570bcbd8e2732ea7b4c5993b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:50da14f6d11ddbb847d97d1098cfb9632735509a9cc47e40651fe7f6b1303769_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:5631acf4f5e2fff226b589b8e7bf5d3d62ee0dd0d2853df0914fd2125572b447_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:a3b09a66e88ed811654a7b87005f8c18f47364d8003b9ece658ebb689fc53c58_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:ee9b002dcbf2a71c1da2c79d3b13009da4d1f545861647f4668f0d6c0059e6b2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:38175096270c8443c768b9144299592df1b8dba876f1698dbd2f67bf4f275e28_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:85ffbb57ac12ed4c8ea2c6c7a4227cfc63ca66430249103da76a37cfb5b3055a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:922704697f2ece363bd20a41bfa904aeb16cbd06430a94dc10f992051baa4033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ea6cba61c8c51cdd9221909532505821e8a3e79d04aeba30de2bde08f1657bef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:1c16b26f10d255def211d174caf3cd5b5d236e1338a9e069972b179446b402f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:51cdf9002a8126fbab95680b46c28af1b5205f655e1c485b75847e890b8fee2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6eef210f806b2e07a6dcecfa30f3831642b1cfaa4399552c2157d83d2d01fd92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ec6b7c399892fe1ac26a9d2ab290b1345b6539d1cf4f80deb6a2156fb4b78c98_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:71fd1dbc396309d87881aaf47ba72063f2609df51204602cb15d80cfee36d8cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:7b9239f1f5e9590e3db71e61fde86db8f43e0085f61ae7769508d2ea058481c7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b16856c4f2e9e88565b5b6458510291843ad020b06c53db2581f890ffe395f76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:e65fe32d1403d2db4e22dff328e4810f1372674957d838e8e2c13f7680cdb8b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4a16055e643c293bb2bd0fac33c3d240ed70411425341d02eec3b85f1ee487b5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:7e58cb79d576e1706c807e1b26c5d2681e6294474f58b0489e106987f169293f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:d44ef9c410be33e351288daf18ad74163c559eb4e224b7c3b4a6e6bda1d0986b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:f42321072d0ab781f41e8f595ed6f5efabe791e472c7d0784e61b3c214194656_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:6c7ec917f0eff7b41d7174f1b5fdc4ce53ad106e51599afba731a8431ff9caa7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:747e8cc2338fc8634d35106925f63ffcbd1d4de9ab9911f73189b461a0440639_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8d4e7f37d6518bd750d278c153279a3f3c49fb6dcb36b9adb736f629e38ce54b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ee5efec92c831154e46d58728617e66e2ac7376b6bc1905e94d4ab6c6f7b36b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5babdecb8265a5944dd4aa1fcfdb2c899b0bdcae8861d13dc958d9c966700d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c3be9fac842b4b6b1719378d84a2318aa2bddff75bd8fab9108cdb2f64890e27_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d13cbc20274f7d6f45fd73893d6e8514491b090188bc9b51da6fff89b0d5d422_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:d4eae03fa1295b7c97f9e38389b8cf916d73fc2176b8d87b453f3c6b531cfe98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3e7c9a81f18a12d869942b358d8129fa87bd7bc76fc7294592023b2b8cfc3530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:44baa4186957ebff10ad9421097a8a13011d6817911226f24654a289d1c68b52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4c9febec693dc2ce2f3541981f0b6514b54e4e66321a4aece9f76084c32cf31d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:94d88fe2fa42931a725508dbf17296b6ed99b8e20c1169f5d1fb8a36f4927ddd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6d5001a555eb05eef7f23d64667303c2b4db8343ee900c265f7613c40c1db229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a1be6086eaa247e6b5b28c454819d0ea6c6dd99099f8c1d38bb66b880b5c0bdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d65b9c30a1022c771e96b507c3e0be933cb254c08e029b036fbb8e902ca5fa99_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f2f1e0ff0a0b3f46473bad3ffa4db5e1748066aad72d8fc2e7c521fc9777e06a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:6f494a80c755f3711a2087d25bcdb83aac8a27833eae51747ddbd4c08d707bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:faa1bb3bd57fa68145a3887270e552d43530ba8627ce68a012d1fd61389a8384_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:97dfb4451f85ee6f3e715abd5af199943802f9bc92c1cf7ded21299892544fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9b3f0ca92220d89ebcbe85bc7d5382b625766f873ca79120cf94439c49382363_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:601f09331ec355f53b7dcd06a1462cab71519c5ac54aac3195d97796568857b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:77c82c7d888cb4796ef466a5a707cefadb01152e445b370656f5fe78576f9daa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:cd0912f6ed9a9fa3c2ad98a6e7d7dc728fcec82424d11254262117ada14b8332_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d5c808f29593b3e0a3e87fcb166da145df89b926c14c48e100fac1269d8b8adf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:23408d6854dc696c46b57ec27a6eeb9ccaef2d51dffc0acc17bcda757cf9f81b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:6e30510c2e34560f7f064cbc081023e02b457359654ca30633adf8e75e69c843_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ac6f919efa6861c17d323a282aea5340c6cc5209dae5db700857bec75ce4097f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:bac8c760d6a961884dabeac35a6f166ddf32ecc86f30cb0e2842bc8c6c564229_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:06dcf3b73c3fb4fcc5ceb8bb71ad7fe66f565c5cda643871a08df36beb4ab274_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a57f02a7f9a6c64a3e3c84cc7156c21ce0223f9161dd7c0b62306cd6798f553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3a68dad72aaafc2f87798f46ec555c3801c29c923476e9f127923a2d22fcdaee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:433eedd8ee532cc1e14b44dfe60cce2e79e890a16a615739aadb6a06c9799c37_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0f3e2f6968e9c7532e49e9ca9e029e73a46eb07c4dbdb73632406de38834dffe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:5e599143423d8c3008aa7c0d2cc4010f79f2b910925dcae0e7a65d093b8d3636_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e5c551e98a3a2d0edecdc2a1d7b734f6bfe16f7c736b23055c146ee6f472e420_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:fbca143f832f3c35bab1d40e9da2dec4a3d05400f7c75d596f0039b4903fcb36_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:711aa82ab6be7d3f56987272c338100f5ea70417e1d161734c8cdb42d8ff5438_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:85bf3cda5e64fa60bc515448ce8b6a07f5980c9f4eb2593702b4a1706c9b5f8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:c25d9e5371c345ae9a7557caafe279f29691572d0252b0a6971c5b599325a2ee_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:efa00f53ef01627fc4ebf2504416053335222c8a5801789e11570c3cc4502f07_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:0100af7f7148850360b455fb2535d72d417bf5d68eca583d1d7a40c849aae350_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:20bf1ceb49a3e32bc254ff2becfbb33148b07851dd867fd5c8863bc21e199829_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:397b31cb16ab67dedd7adffb974eab4eb1ee652eec346ed7639023e42fba51da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:b6221d36e44f3cc202297163f6f59295b1ecb6c88e885cd4390065edeeda8b69_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:107d0b66a0b081fa2f9ab28965bb268093061321d71c56fba884e29613866285_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4e5b127032211816f4edeaf97b802c82c445c61b71342e447c813681ee6a4f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:4fe55316acc9693e8b05ab8310f791c7e580a3727e91570d98aaae502793d9c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a728ed24b03842f4c4d05cc39e57883a733b105f8a2f9a8b2cdd8ae3c5d4a6b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8af5664d4906c9ab1e2d33eb635feb12cffdd7e8623d36c927a02a8f25569f99_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ce65baf9b6046badcf6750a9940d201374005867e7d3b712f52192f8f2f35acb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:cfa8acfdbda46f63d3c51478c63493f273446353f5f48bf11bf4213ebc853e92_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:d1c72de4b626c91e7e8a5632a6a0ac6b8c3204affe5a5edadb826c1e3b3a93ac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:1f2318d749dfb735fcf8e89bc8458adc2b7c21b0ef83f801756b2dc524fb8a46_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4a62b994daa29bfae25de1160057e110769f1e9bbc9a2981eb919f634810a5a7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a82e441a9e9b93f0e010f1ce26e30c24b6ca93f7752084d4694ebdb3c5b53f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d7e3822e769c08bf3aacaace5bcea5b0a5e1e73cbf40abcc770a415e78c58573_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:532736c0871c161d168130394a711d6764b9e472bc090d463df2e9e3eba0f86e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:67842a91a93fe9f7ec83b2d2d2b84a0e836ba2346174c962c007f0128b77756c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a1dcd1b7d6878b28ed95aed9f0c0e2df156c17cb9fe5971400b983e3f2be29c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:93ea43d977f6f8673c5b61076e18de544a6f70e505e9bae37ce1000c2d51b614_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:05fb614fd29c183b1de19b161d4dc96bd5b5e98978d1a5d949f13c02069bceaa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:9e674038a2f8ebde954c712f94fb615b89e7b9dcf2c4e3a35b4eb405a286b265_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a33cf7afa2d7860a595768546bc43375cf66186175c598c2eceea306cecab0bd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:fa37ef849e7509bc3742cff47e1be64f78c7159fd2554c6d382e9bd3452fdbb4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:184bc2eb7cc65277bd5bb03676e319557a95bff246772c69b82e025a2f0aa194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3be2be8b12f6e6d86398f81a75902219ecb0f8649c609820b75c01084134de02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:68772eea4cf4948d54d62ed4d7f62ef511d5ef318730e545f07fdd3f29c6b5e1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:6cacf62b7d35e7e194f40f23cc5d69e363344bef1aeb932cee7c5a2e611037fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1681933a391ba8e8d1bfd4b277bf82efec44b9e121912db8f3a5bc09d4cbc0dd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:1a3bef9a43438ab475af89a16225f015c17bff1244015493a6a42c049a922ea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cbf825f728d40af778a74f99e42527ced64f73491541df9c2f3438a11b7068e3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d0b7bbb3f8a31158a765dc2b0eea7d831d66323260b0da37542325c58a7a99e4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:b656abea0c73ff9ab619782967545338da1d1c11296efdfc8af56e8ac23346aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:40a2decaf46c029dcae9a05bcbbf6e6bac9450620dc56d13065cd93bce09b899_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:813fbd97a062b25b645997ffc4036274319db1fdf98f7dc6482406e0f649b43a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:747e9b5dd03018d608c8cbac767aa4e04cb0a9282e695724b62e39b5220d865a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:aa18055ec1dc24a00f5f78c19b6e3469da9c09bf6f5401040ef8d2954a885553_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:691a8698b71e8e79323f7f38f006414fd0faca8ee73ceb85b912834616f64a73_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3e019d9c735f3ac2ef367a252e3981fea3bb410c898df0d522e6d32bc1c76199_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5c307d0a3c016f1c7997c6387f579649682ac71d89ce2263956395077b9e9a6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:829ab255b1878e47ee5fb23a5eba46bf3f1e78579b070ba0340e679872cbdbed_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:9ea31635b22571e8c0adbf24b50d1676182fba41803b15bb17c5593729a3276a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:143204c93dafb7f01b1ca46a856d094697184785d0427a6d49307ed980c2ac02_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7c32d8822d011c2b218ec71271872cd897bdb9d257b4d4dd95b4e74651b87e30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:899943bf2f2a1e6b0eac89db3afb499cfe28e81af14755cf790ef7fbeda12019_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f0f716733ef305d7cb6e9b2fbeb3e8d773caf5c077f55268356ca2891ee765d3_arm64"
]
}
],
"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:0761
Vulnerability from csaf_redhat - Published: 2026-01-19 03:34 - Updated: 2026-02-11 05:08Notes
{
"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-02-11T05:08:02+00:00",
"generator": {
"date": "2026-02-11T05:08:02+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-02-11T05:08:02+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:0531
Vulnerability from csaf_redhat - Published: 2026-01-13 21:28 - Updated: 2026-02-11 05:08Notes
{
"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-02-11T05:08:01+00:00",
"generator": {
"date": "2026-02-11T05:08:01+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-02-11T05:08:01+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.",
"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": "auth0/node-jws is a JSON Web Signature implementation for Node.js. In versions 3.2.2 and earlier and version 4.0.0, auth0/node-jws has an improper signature verification vulnerability when using the HS256 algorithm under specific conditions. Applications are affected when they use the jws.createVerify() function for HMAC algorithms and use user-provided data from the JSON Web Signature protected header or payload in HMAC secret lookup routines, which can allow attackers to bypass signature verification. This issue has been patched in versions 3.2.3 and 4.0.1.",
"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:2148
Vulnerability from csaf_redhat - Published: 2026-02-05 15:58 - Updated: 2026-02-11 05:08Notes
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Kiali 2.11.6 for Red Hat OpenShift Service Mesh 3.1\n\nThis update has a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Kiali 2.11.6, for Red Hat OpenShift Service Mesh 3.1, provides observability for the service mesh by offering a visual representation of the mesh topology and metrics, helping users monitor, trace, and manage efficiently.\n\nSecurity Fix(es):\n\n* kiali-ossmc-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284 )\n\n* kiali-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284 )\n\n* kiali-rhel9: Excessive resource consumption when printing error string for host certificate validation in crypto/x509 (CVE-2025-61729)\n\n* kiali-ossmc-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-ossmc-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n\n* kiali-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2148",
"url": "https://access.redhat.com/errata/RHSA-2026:2148"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-13465",
"url": "https://access.redhat.com/security/cve/cve-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-15284",
"url": "https://access.redhat.com/security/cve/cve-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-61729",
"url": "https://access.redhat.com/security/cve/cve-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2026-22029",
"url": "https://access.redhat.com/security/cve/cve-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2148.json"
}
],
"title": "Red Hat Security Advisory: Kiali 2.11.6 for Red Hat OpenShift Service Mesh 3.1",
"tracking": {
"current_release_date": "2026-02-11T05:08:38+00:00",
"generator": {
"date": "2026-02-11T05:08:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2148",
"initial_release_date": "2026-02-05T15:58:24+00:00",
"revision_history": [
{
"date": "2026-02-05T15:58:24+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-05T15:58:29+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:08:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Service Mesh 3.1",
"product": {
"name": "Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:service_mesh:3.1::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Service Mesh"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Ad6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ae5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140180"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3A82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140180"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aa60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ab6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140180"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3A2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138727"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3A84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140180"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64 as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64 as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64 as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64 as a component of Red Hat OpenShift Service Mesh 3.1",
"product_id": "Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.1"
}
]
},
"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",
"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.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:58:24+00:00",
"details": "See Kiali 2.11.6 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.1/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2148"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"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",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_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-05T15:58:24+00:00",
"details": "See Kiali 2.11.6 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.1/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2148"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "Within HostnameError.Error(), when constructing an error string, there is no limit to the number of hosts that will be printed out. Furthermore, the error string is constructed by repeated string concatenation, leading to quadratic runtime. Therefore, a certificate provided by a malicious actor can result in excessive resource consumption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:58:24+00:00",
"details": "See Kiali 2.11.6 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.1/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2148"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "React Router is a router for React. In @remix-run/router version prior to 1.23.2. and react-router 7.0.0 through 7.11.0, 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. There is no impact if Declarative Mode (\u003cBrowserRouter\u003e) is being used. This issue has been patched in @remix-run/router version 1.23.2 and react-router version 7.12.0.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:58:24+00:00",
"details": "See Kiali 2.11.6 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.1/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2148"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:82e36c47f867ced806082b44fe357e70b07c72c4258c16af5a14f56fc040b534_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:84dfc3c35747d81138244b4aa9893f9f1d21775717a4014d328eb5701d832569_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:b6b13c0381b96b286fd04e777ae6801ad61e703b5484e9105b9fa0c5de587c29_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:e5a71ca768b96c827dd2fd860cbd739d7743f1eeb89b2e4c7cc9157941683626_amd64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:2cdf4960ec57c4971d2f9ce92b07686831e6f55e24c9b1a2831470f8da05b598_s390x",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a60d01bfe3bfa2dc484f9d940b71538f0b3732cb77db883edb7a93cf42f2992e_ppc64le",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ae9d275647749b591a1ab2e4e805904b02bf8af4265793120b5eb1065759fc13_arm64",
"Red Hat OpenShift Service Mesh 3.1:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d6aaf4ab035e7dfb136fd85f82fb10852e657e8fdae2281613258009bb26250e_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:2149
Vulnerability from csaf_redhat - Published: 2026-02-05 16:16 - Updated: 2026-02-11 05:08Notes
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Kiali 2.17.3 for Red Hat OpenShift Service Mesh 3.2\n\nThis update has a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Kiali 2.17.3, for Red Hat OpenShift Service Mesh 3.2, provides observability for the service mesh by offering a visual representation of the mesh topology and metrics, helping users monitor, trace, and manage efficiently.\n\nSecurity Fix(es):\n\n* kiali-ossmc-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel9: Excessive resource consumption when printing error string for host certificate validation in crypto/x509 (CVE-2025-61729)\n\n* kiali-ossmc-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-ossmc-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n\n* kiali-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2149",
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-13465",
"url": "https://access.redhat.com/security/cve/cve-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-15284",
"url": "https://access.redhat.com/security/cve/cve-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-61729",
"url": "https://access.redhat.com/security/cve/cve-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2026-22029",
"url": "https://access.redhat.com/security/cve/cve-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification",
"url": "https://access.redhat.com/security/updates/classification"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2149.json"
}
],
"title": "Red Hat Security Advisory: Kiali 2.17.3 for Red Hat OpenShift Service Mesh 3.2",
"tracking": {
"current_release_date": "2026-02-11T05:08:38+00:00",
"generator": {
"date": "2026-02-11T05:08:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2149",
"initial_release_date": "2026-02-05T16:16:04+00:00",
"revision_history": [
{
"date": "2026-02-05T16:16:04+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-05T16:16:11+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:08:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Service Mesh 3.2",
"product": {
"name": "Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:service_mesh:3.2::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Service Mesh"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aa97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-operator-bundle@sha256%3Af3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770146001"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3A447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ac602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Ad9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3A46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Afcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3Ad1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3A700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770138513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9-operator@sha256%3A22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140298"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ad2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770142326"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64 as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le as a component of Red Hat OpenShift Service Mesh 3.2",
"product_id": "Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-13465",
"cwe": {
"id": "CWE-1321",
"name": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)"
},
"discovery_date": "2026-01-21T20:01:28.774829+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431740"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Lodash. A prototype pollution vulnerability in the _.unset and _.omit functions allows an attacker able to control property paths to delete methods from global prototypes. By removing essential functionalities, this can result in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "lodash: prototype pollution in _.unset and _.omit functions",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is only exploitable by applications using the _.unset and _.omit functions on an object and allowing user input to determine the path of the property to be removed. This issue only allows the deletion of properties but does not allow overwriting their behavior, limiting the impact to a denial of service. Due to this reason, this vulnerability has been rated with an important severity.\n\nIn Grafana, JavaScript code runs only in the browser, while the server side is all Golang. Therefore, the worst-case scenario is a loss of functionality in the client application inside the browser. To reflect this, the CVSS availability metric and the severity of the Grafana and the Grafana-PCP component have been updated to low and moderate, respectively.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "lodash: prototype pollution in _.unset and _.omit functions"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-29T23:00:58.541337+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "RHBZ#2425946",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2425946"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"category": "external",
"summary": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
}
],
"release_date": "2025-12-29T22:56:45.240000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "Within HostnameError.Error(), when constructing an error string, there is no limit to the number of hosts that will be printed out. Furthermore, the error string is constructed by repeated string concatenation, leading to quadratic runtime. Therefore, a certificate provided by a malicious actor can result in excessive resource consumption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "React Router is a router for React. In @remix-run/router version prior to 1.23.2. and react-router 7.0.0 through 7.11.0, 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. There is no impact if Declarative Mode (\u003cBrowserRouter\u003e) is being used. This issue has been patched in @remix-run/router version 1.23.2 and react-router version 7.12.0.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T16:16:04+00:00",
"details": "See Kiali 2.17.3 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.2/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2149"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-operator-bundle@sha256:f3a430fc3f2bc6d3c66ea3ae3871987e3f5e8a17dd756008593ac5e7b48da289_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:700c2524c0def53bf8e5f7832c27496a3e9ff5c9d939d38c59a7fae167418e16_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c602eca72f7b82ac6431748219e88eb0500f5aaedd446ffacbce982cdb7321f1_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d2d862c021ddcd974a12d63ea6c270e2de651201182c16baa3e24f7ce8985daf_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:fcb5d2c8e4ae372cb0009dc15d46eb5a10163139b61b063115c3d3fce90265e1_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:22a68e23c1b378898676346df798973f60c1784f93fcbcca713d1b09f19d251f_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:447415cd243bbab90dc1c472f0acc5249b01a83eb7473934fc3bcbcf2c77d107_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:46a3b372f155663da9a5caac4ee601ba834e35c129cbf144d28aab641b4cc7ca_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9-operator@sha256:d1b7f45b075f779df79d659fd07a3bfbb85a47468d6d856a2738d312a3d67e7d_ppc64le",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:a97c82b48b920f1d3843d08dbe55d3759b237365e2b97501a640a1c0bd08d5ca_amd64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ced99993701c64b69f412c0ef9991a8d6d38ee1c8520330c4ac999addbb3bbbe_s390x",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d9c852cf7f5f21374f8ae2e31692fa30090dbe13fa66b3a608fc07d0a5e8ae2c_arm64",
"Red Hat OpenShift Service Mesh 3.2:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ef18675f445508d01ae56ef59709b70d4b69187bb03425061cac62998f643fe5_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:2147
Vulnerability from csaf_redhat - Published: 2026-02-05 15:58 - Updated: 2026-02-11 05:08Notes
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Kiali 2.4.12 for Red Hat OpenShift Service Mesh 3.0\n\nThis update has a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Kiali 2.4.12, for Red Hat OpenShift Service Mesh 3.0, provides observability for the service mesh by offering a visual representation of the mesh topology and metrics, helping users monitor, trace, and manage efficiently\n\nSecurity Fix(es):\n\n* kiali-ossmc-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel9: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel9: Excessive resource consumption when printing error string for host certificate validation in crypto/x509 (CVE-2025-61729)\n\n* kiali-ossmc-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-rhel9: React Router vulnerable to XSS via Open Redirects (CVE-2026-22029)\n\n* kiali-ossmc-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n\n* kiali-rhel9: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2147",
"url": "https://access.redhat.com/errata/RHSA-2026:2147"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-13465",
"url": "https://access.redhat.com/security/cve/cve-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-15284",
"url": "https://access.redhat.com/security/cve/cve-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-61729",
"url": "https://access.redhat.com/security/cve/cve-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2026-22029",
"url": "https://access.redhat.com/security/cve/cve-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification",
"url": "https://access.redhat.com/security/updates/classification"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2147.json"
}
],
"title": "Red Hat Security Advisory: Kiali 2.4.12 for Red Hat OpenShift Service Mesh 3.0",
"tracking": {
"current_release_date": "2026-02-11T05:08:38+00:00",
"generator": {
"date": "2026-02-11T05:08:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2147",
"initial_release_date": "2026-02-05T15:58:12+00:00",
"revision_history": [
{
"date": "2026-02-05T15:58:12+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-05T15:58:16+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:08:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Service Mesh 3.0",
"product": {
"name": "Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:service_mesh:3.0::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Service Mesh"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Ad188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ad843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140791"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3Aada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3A19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140791"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3A6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3Ac1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140791"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel9@sha256%3A527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel9@sha256%3A94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140791"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64 as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64 as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64 as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64 as a component of Red Hat OpenShift Service Mesh 3.0",
"product_id": "Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 3.0"
}
]
},
"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",
"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.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:58:12+00:00",
"details": "See Kiali 2.4.12 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.0/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2147"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"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",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_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-05T15:58:12+00:00",
"details": "See Kiali 2.4.12 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.0/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2147"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "Within HostnameError.Error(), when constructing an error string, there is no limit to the number of hosts that will be printed out. Furthermore, the error string is constructed by repeated string concatenation, leading to quadratic runtime. Therefore, a certificate provided by a malicious actor can result in excessive resource consumption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:58:12+00:00",
"details": "See Kiali 2.4.12 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.0/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2147"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-22029",
"cwe": {
"id": "CWE-79",
"name": "Improper Neutralization of Input During Web Page Generation (\u0027Cross-site Scripting\u0027)"
},
"discovery_date": "2026-01-10T04:01:03.694749+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "React Router is a router for React. In @remix-run/router version prior to 1.23.2. and react-router 7.0.0 through 7.11.0, 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. There is no impact if Declarative Mode (\u003cBrowserRouter\u003e) is being used. This issue has been patched in @remix-run/router version 1.23.2 and react-router version 7.12.0.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:58:12+00:00",
"details": "See Kiali 2.4.12 documentation at https://docs.redhat.com/en/documentation/red_hat_openshift_service_mesh/3.0/html/observability/kiali-operator-provided-by-red-hat",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2147"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:19c44dfb277123122abafc25552fe408ea7ad6dc026aa592f53e3a754ca0a44f_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:94fc56d838f03fd43cacfc219626464469fae9ebf24e10a6b2e3de710d9da268_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:c1db580dd0b4417b069cf8bc9d691047e7b31406fd75075e1e63df6ba5f1799e_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel9@sha256:d843214da448c340907b3eee5fb95ed6937b61897c2d3d7d54f0aad1f7423a9d_amd64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:527fd434b3b1f9b9304adbedd89a593ca347a84571a68c7935afe6aa207db49f_s390x",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:6300ec1cc673e8eb40333fe98e69845c995116a5c4c80cf37f78209fc3ad1883_ppc64le",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:ada195cbb75fa307fbbc82856a34991d6e88b39be01d2b0b38a4be77e1c80ebd_arm64",
"Red Hat OpenShift Service Mesh 3.0:registry.redhat.io/openshift-service-mesh/kiali-rhel9@sha256:d188f4e95efbc9c699975ac101a746ee2ccf0313e8b6ef2834c36540ffee9b34_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
}
]
}
RHSA-2026:1000
Vulnerability from csaf_redhat - Published: 2026-01-27 14:30 - Updated: 2026-02-11 05:08Notes
{
"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-02-11T05:08:03+00:00",
"generator": {
"date": "2026-02-11T05:08:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"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-02-11T05:08:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.2",
"product": {
"name": "Red Hat OpenShift Container Platform 4.2",
"product_id": "Red Hat OpenShift Container Platform 4.2",
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
},
{
"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.2",
"product_id": "Red Hat OpenShift Container Platform 4.2: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.2"
}
]
},
"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.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.2: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.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.2: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.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.2: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.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.2: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.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a0439ea171bae0e1c9a2a7642d3d9847fa0dc03f6dd751083702be6ea543202b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:aa84a3a4ccdded6cc52e25158356762d1bd43253d7fd8d1248b9bf0e990fa28d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eb505bf80353d4fb46e77972e5be35d649602fd9db6a9eabc97c31d5bc5f328d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:fe069a3a16f3bfe1326b8516c34d15d868456b3ac70c481c5500c55ed3d27120_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:058d2c736946b1354403e129ffeb0b52edf5b9418e122663d4b4f6b123df336f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3284f79243dd78827c27d11959d2e2828f26c002001ebe6dd85c69585fe78ebc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:700d2adf024755b5fa742f52aa80cd93666e44d070510e0f09fa3b6a432299ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f91e11af1c53767e4dc4ee9dbd5ed3d012a6cdcfb709352406b92d116c9e770b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:2d12038fbc8736a9b3038791824e7d6cb1909bbc019bb5b3f4c1f81de8276a77_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:6e5dee1aa89818ea44db9f7b2fb7ee8284c74240717af613a11294f2ec6e9e6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:8b6743d2817a0f99ab0422b60f737e8efd54d540975eb43a18bd5b0ae8d278d0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:ee7f6230faae0dcea5efa72acbb6a793c10da9152ee2e0c338b4b252ba34a6fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:343131690260161e53e4020579a36f0dbbc30ab8d7f7f519c7b871cb43c90f44_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:ce823949c5fe353542937513636c6de80a4caa2e9273bb4e28fb9d784ce5fe35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:de68aa6d8045b4e4dccd8bccbe6db378f323e94495b623b9eb63e052d5332ea3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:faff94e07b944ba98f45bd2a101450fad5db1dd7a2ff1381c8385f8e0e8e4a2a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:433e71999e326ef1d70ba325ed777289659ab8f2b1b659a6906aae5f4b511482_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:78af62ed18b0ae14dbb03078dfe29848710be9d7d00411dd543d890047507491_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:8d9be956e3b2db58de6d5719c45a9c3c8514150496d1be7563a95fac778f86cc_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:f257fb480916f3d8894b40612ae46668c9e047999f3374d0e1bde77b6b3c3229_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0be8182d75339d225fc5cc8e04dec2765ff11ed00acd5323cc65bb24869ddf12_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:56ea46922322fb046400e9c4055ac7e1790fa12fca740d6b91b2bd927b6ac04a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:66a7973d7c84a6cb59f1890bb1f54822ad50c9e3c2cc70bc6397f5c3b54728c5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:dccc3bc8b1d44cf1f7712036883a794cef517848921d1430869019cba422e029_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1a55e5d39010cf3c7b68b5fe8a4c766fbadf67209bc322bbaad7bb1482b23137_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:3b6dd190e8b109c2ba528ae183f3407b4cf60dd5f776fbd1b5c8944754e421a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:98544e8b17fcb7805beaa72d41eb3249fe18a816b958473a2975588eafbe0394_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cb42cbd3c2cfc34e9952f0f6f020ac3df8a031e6950e965f956203027f886427_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:9377caefcb681a85065e1f5102c44b3660f2930b1a025f7dbb3d22ed0603c94d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a162b615d8368c4d5b0e6e180e5caf96ded9a481de0ddf9fd50631a33128f376_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a91e3de8081f371c9ff9f2f16619d915621264378f0c861e2ba1366f10053cb1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:d8c5693cd48183c8e6896b82468202d151cebe78893c4420e899198c83152e7b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:56484d46497186d098432fa3b8ac9727f37f2a86373d8f784aef18dc88cf3cda_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c4fe8e51626ac23c7e4384ac78ac471914db12e4d9afdd95506a07ece49d9b58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:c6ec3815b7ba3ade69ae4953533032639dbfedfb5c8613764af4928e309e6d0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/frr-rhel9@sha256:efbcd5dcbf11d00ed6d0ea95a06b774e64b35689017ce2c91064d2eed3e264be_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:4de4a48224cc46a936e4fa0f8740031da8d57fe421a911bc7f482173f3491080_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:63f170d06570f6a690e7225f1f62db3daa5aa8b9ef98fb02a7b4887d7f78e2a5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a5d188ab38ff06e433fdd25a14fd6b23d1fa78d783070ef8fed35f7b2588540f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c92bfedc218768d9d1f78392b68b775022f89df537956b35b1e6feeab24042cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:1c466fb45bd3c74a418a8396a4c9921d21dda976dd74d68542a2bd4540e22a6e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:37cb00823df4e1bb07c3c9dd61ce5d01652308f230c15726ed4f62350a0b1f35_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:750a032322bae1b3c96a8aa6617451ddccbd41e91374a20dfb0025b5e1ec4033_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:e5ee3f21d97e6e30074a4eba0f9853ebd29c1aee44c21dd2ab2ae991e5626d26_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:10419f9926e29ec4d6f58776f52038b6a58e3da12a3afdee37ca371aa4be7286_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:17433cba1128bc609554c37d1ed8ff8f2079612f0ac3fb8abf29b3523b2950a4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c7b5464ab0f9bd1ce827d9be2fd69518aaf1bc141d263e4c0e3dae50b426b902_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cffe1ed139c1ad34e99127684f184827b11c71df96350b52a69accb245f1b2af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0a9a4160de5a1bdbfce75c3c67e98fce468bc459539e96b6b272087028c1af14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0e1fdcf903c2114a66d71d8a5519fbcb78a34e3de1c42ecd72e8e9573a380529_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2d99e88a22f067b67500316bb97c634f0cbb00926a219e903168116c8fc83f37_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b29f36fd5816e96ebca055a94d159a5598a2b99fc162339d2c1ee4d37c4c12e6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:174abc3d8b7a6b132d72fb839eebde1ddbd3426f44824c4f0741a3f4f0a584f8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:1fc12250db91593e4dc314dda75f9d589365a20faedb48c138ae04753e1a494d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:512827d619218dd3bbe115c4c145260b96008c212f1a78b28ddd94fdf29553b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7985bb7426a25a6365cee6785aa8f89b949d9254818dafe3d1567dd376434067_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:1afe0c32068c42b157a9e3f9f12e853e6129d2c7f62cbd2c01aa544f07a36ca7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:38d8e1e66826e941d6f7d6787292ae5c0a0ccd6ba9a98ac8571d64ecea971361_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:8e4d977fcc3342e8cd41996ac56405eb0735b3aa195dcf2884f326df196702c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:d6d85abdb43c62f9c53b0cb9ad80ba2fc57a33f6e570c7fe54c0cef925ba00cf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2918bd9c98ed5d69b3f1dd667e65ac387dccb6f3a444f0dfeef2be3f80cb1051_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:8dfed609dbcc788aa9586e8b49fd0a97291d338e50d9994880706c424a5ec7dc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:97bed80a704a3b31316302cefce04ecc31616316a0f3f065b7c469bf8928e037_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c2ff51ed35c889dfdc665f42d758d0d33907e36ffb7c8328a967cd0a4ff52607_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:5a79801a059d783ba90c8559b75201098f7c4c1e5618dee25bd948b1a4609dda_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:ad22718fe774fdcce0e1588184cba490b6fd87a95ffa68b654f802d2b09b260c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e70a2ae0466a764a41a36b1b392a8ad3477b5cc209b52283fc03589ce405443c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f29a30bffb49367b8590ef91c5b20c1b717977c12397794bfc237039458192d7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:13889e9b909c8c248f52f7c8524f8db80b1775647a0861f7d7d961e49903c654_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:53a47bb9e0618f5882bc4e4cab22f52632c7c15e6d4b5c06554a6852a3f25626_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b9f6a702f94213de65640ef6ce696072cd1796162cf2a1c6ad5f47704a4e6f69_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d9e60591fa14959aec7ec269df348dfca3c14ae744ef992fded6b4f3f924669f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:037d365d1af9836b0e10cf7013ca7e6e012608da354ced04989ce27b134e865f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:3851bff52df47ae2819ccbf2e3e17a9964652ad506cca44b8248bf0aaf613bf7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4652d76320f22c835470103516e1cd5293f2ea1a1d64a3c5ace40200ff48aa8e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ce0f46e22d8b1765b369230779aec22605fdca543939f7dd770661735bd54f73_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:2dd0fff7b44ab499d73424a161b61efa3acde17d285ef934f84d5ce34766d346_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:39c3ee86d1c35eb77c0f745b136458ce3240aaf31d5fdb98be864cddfcac37a9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:5fdaf90ee08a6d7a8cc6bd90bff7905915a1485c5481d257b65108f5ccd4887e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:724e35fc8172d4d9b90b2aa60153739bbb075b2c37d2f9377344ed8462be4c04_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:05fabb6e77710bb2c3b287f7e67029ae69aeaf3ff841ea0b6381b589b430e5a4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:796f106e1513a1b71ad1b4df18b6282319b7948cc5fe1170a34ce77b528b6cf8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:cf69b4231397188e18df41ae8df45b8735544946da7d8ab34ebe3368202ab4e7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:eb48c0777a4a389f33444da1ee5bf56afcdd001f46edfbfe9d38d1c9ec12a384_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:a0bb1bb6a2e25dfd3515a48305ff06488ade5139ff853d0733cef12c2f563453_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:034c40e6c47366572fa44c835545e1b91d2848f626f827d76c1cd1caf680b1fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:3713dcf9995fa94d3d790fbdf67922b6e196d6c08fda60f895d596681012b95b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:8870f47b2b4bb60ca73a316b892d65c93d5807ba7741a0e0f040ec49a045eaa0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:92f619593ec16a245a3b7121c86c6714497c40a0e3b9312156598098c66780dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4a91d978587238b101f56cb2d7f490ef03be80fa7e733c2f62ff97493eed5412_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:7d5ec61dd6569e44060a3cee24c29317fc4ce94bfd6940c1c1d66ab25ba65a29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:945608b223583fbec1b964eaee0b88b61652845f8c4c4ca8ef27a63927556277_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:f6d30702768f1acf1a17d43e216d236fdacc510ad4ae5b7cb98cb58edf2e8f19_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:6af265d24bc32fa8d7c1e51e252fceb481085487bfbbc83e6ed2f2fbd60f3939_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:94a949679080eb25f4a442ed5f5ea67daa06a85ac4f96cf943cd70194c0ae744_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:91e3737728002198b0d9e8fd61c0eff6b7c347da4cbb96670ad11bc9cbdeafde_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:a94e3d4cea148b758081980b4a54147738bac70c3f66ea1546e63af691b4fa6d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:1443e77cf60a0e96ca5c5e48280e5f373d60e7b1190c1c2078b048a48aa6ae2e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a127655796264964b0aeb27fd0cf27157c6d4702554655aa35018829c98878cb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:16eec5fa72b90a0210d17a4497e5f430e1461046890512fc480568fa54542a80_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:c7d242b4dde6aa4da477c7db479d47ea182df349c0a7a8c374a6441f69dd2bfa_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:12e6c74a04871bdcacbd8748d0e768ffe50e730e64e914db12dcf5c49872a3d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:fbd85b6cf142a7303506ff031bcf8f9bc22434b01b8af802450e2ce2c7d9c331_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:25294a4d2ca615c531bcccfb75ca2b8271774634924f753f87036ab9dd37ff1d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6c30b8d107e62b2b6e08c4aba03d3f6dbf6a6cefd3de88611b04602e4a84f616_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:70c8fd53d5afcd4527c7dc66a4b3b14f3da4eb9fbd1a7552e50fa2b2fb6e7b1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:bacd9cb14bd35b7af089687468c629cdf00d6bd8eb4329b03de701ef01eb906b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:9f6f3bdb1a7122e182ebfc7a316406e9a49ecf6bf9561ad6d95a710d9dab0f9f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:d8da0b2371e1dbaf38b93d4df4473777311ac1092833eb6ba4d3a400f8ddf7d8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:0780454773c9cf124a81a1fd5506b24d27ec4bb05563e8c9318fc0927297e9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:e53cb8811fc2ff70bb300b80dc99cfee4f4ef26fead261e8ee8d572a61c674ef_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:78a99f2bf1a0d4985b7829c4982e5009d177c853ac2b10f7eeedbee7249ab1af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:b08d0aabc6a5a344e1f15493b77612573871ce57022266e7912aa51ba063aa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c29c0a0b262f21071900a1d75183a469405ba47635c893d71319f39656ebc7db_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:dce78a16bd7e0bad5dea2e556c47e23dc47457d4c99067e3246c2e3a8127c98a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:ca34d4b835378a697d9ca1252a99b75abac619031cf076e24babf6be5e32b9fc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:cb34fa841f30d6c244480deeb8ac72a5f7ed8ea0b61dfa17f05611ec4e510369_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:39f412fc39431a8abb80d388ca0285e4cbf4aec31a2cc136d88fa0a91bd4ee56_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:97afd7900b2c9f99995ca7618780ed025921b5c3ccd0bc031b60eb96b8c97d6b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:2601409e2e25bcf6c8b926ac9bdf269702cd64958fb6535374858778f40c92b0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:7d919f0c4d433adce3f458c318f503101529346c411428d7ab1feaa646f2aa93_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:bce5f4fb49a48a3badc613beb5aee38cb58ba94c75f47a8ca2bed5fa22934740_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:ccb6940b45f06b90e1978deede0ce0bdeb986beda5b25e1bce4d689c18044754_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:26d22b9612af974d6bece2d0c20ff85376ace027fb8d3edc3dc6248e3d7d9fcd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:4cb0295a05aab78eb2bb102ba0b76dba4900449dba954014fb576d475f01b486_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5f2bcfd580ba4eaf984aff55faf549b63f18ed19e881e239008a71da0389e29e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:bc4d440f4c04162deaf135e979b81ac4671bc2b8218366d08312d8960a9105b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:1935e67496f484585141603755932d9adbcfe95afe1c6f641d5a919db6a45f1d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:44e89c5acf816b9752e3f1bde153ff305c7e4a36f3e66054b90b5e3941af4839_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4574d8c89e2512e555624d44ba36af20255d353096fe9e568630efc44e821c29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:97cf3dc7efd6b742f81745fe9aa0dab97b8317cb87eb172cbafe4f63d841179c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:393136f6a67ae9f010dc0aa8af516925551c7a3e6462ee9ae33acb52c08348f2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:465201d7bc9bbe5ae9c1356ab44786e3794a10be39d11bc95a98b5a91fc8f17c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:5d94a85ec36ea216d6b3c4efcc6e6431a885bf5a736b63f35159878b8420dadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e1572d1ee55e8b63c00725c50efe0e2f2241a045ac523901f3848e1dea62cf7b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1f9b6c4cbe4be1821cd866e2670ecdeccdd30d56af5a32094aed298814287d64_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:699e770ee3bb7b1ca627912edf42cd2eeb584c6b76e1f500b1756b085ae00be3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:6d85965d15c8816c99cac630ed9f96127fe1f6bb16455a6d9cd6a2c76bbf1a1c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:ad49a7c57c1f3af129043de5cde3efc2a98280050bb2f03e5aeb79a9fae6da6e_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:11cc1a07e6e81c0ec7350b3f73a241268227884c9f25e6e7b5fadae3adda0641_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:5682b7095b369cdefe94b9a4112f3acc47bea5ab29c9480b15bd69c8aee58ffc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:775ceed7bb6e9297d934f3bbc030e3fdd85798498741f7407b6f72c717fe39e8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fc34c0bb600192ea7eb29f91ef7e367d60061969ff8d22962a16da457c7a7d49_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b90f6ae99ce8c26391718c954c0f86be70a9ab5450cb7793f73f1befce026354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:e577dce25a9f06468c866700c8ff6d4122516ddbbd9995e5cf4ea1156d61988a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f07d53e8a3004e5fc0d049255a0a8d8d2a101d5641707f26c01a1b5936d2f7e9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:f48f8542b0f0d0a4e6779d407ba9276289f42d935b04ebc357c115128ca5cd79_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:0032f05f769e40ebb9c648ec8b480b5a3a6a00e7812439d5fabe6c4951ed0e53_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:c8ec6a3a829d2621672daeac773b54da0d3b1806845cb4d129b8fbecac3dc9d8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e1b82b0c6c41d1226bbe63659ac7491f45bdea3de83d563e65451bb63848aa24_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f352365dd6a12ceb1558f2f278cab34e0978dbbd61c0eaaacf5f27a8e8bd12de_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0ceaac01a517dc7d72fb38ba164926132e7bad84b7307aeb992835b578636f06_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:5e58cf3b8fe88f3c217d5f3a0a840632c1bd2a7b363fb32b9d6178d54ef2fb7c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:90284d20699b5b468eef62c9b30a4556f10d1d65582ed9155dcfdd6cc0e6693c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c502e412ef31194a3b0d290efde5bdc347d661f12ebdb8b9b58be3fbdc07ea99_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b37ae6a07805924dce9e07992846abbcfe7ea2c2faf9e741ba5ea10005bf88f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:aa35c022d1a5144080c32918ee427b0cbd2c0e1e0eb258062a045f50e8c145df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e0961ebf9e09b100ab7da477ad98bf48db105564f6dcfdcf2b7f326bc3edbd03_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:e3c661b521060d9641d7bc8be4dc51717a4b164a8f02fe2ba6dd6411d6733748_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:b553d1f77711e80d30195893ed21fbad638f84dd049a34f83eb2400a0f79e704_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:baad44d59514044e18d543d454e699a7c75db4914038f6ae383e1875f4922e58_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:d24065e83a3bb7dfad4f78c107e51e4764d0cfff4eda306bd712ae3ffcfcb933_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e9d6a333777cc05de8a2df4d09562857f8a0f03320ba79bf09396cacd18cb38d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:197af4789e09c7581395bae6e26e8544aa1c523640aa6e7b98509c054db5dd54_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:396ee192ffc6e1848ba035be9dad877ed20e1c947b8bb94adf39dd977e1d33b2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:3dbe38fa969acd665a8aaa4d5cb9f1cfe181cc46ef7c20040e8c8dd05f5692fd_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:83732d681511dd7147117f0720cac140ff2e08b63197c5e5801e8430ba6266ed_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3efc63af0f213c0c6cd6e604677ecd140e859e188f16c96be4d8f56e7f364fc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:629d9904eead42901e6641296c332f8461f179624be37262e5360e719a2f9876_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b107890e1c2993b1022e391df4876f7f5b34b927977ae904970dd475823233d7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:c254304f13618cceb25a5d0142ed3072a5f773796126d75da429454e7f766921_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:12b76a6e6c06d9a0dd6a81d9beb1c64a7f41f597c1f0cc6ec61fea2a25b6ea37_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:2ad64f7c93760407014ea86dc423b0dc83f1053ee19188b838d9849cbc31d1c0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:59914f3a3aaca719425b9e8b568fe40d365dbc32543a5ab5b5555cad81d113fe_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:a0e0113a2100e98b134243786cecb0896b38a2db622fbc3efe2696b746bf4f9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:25a587e2bd18205a01fd8217c09dde2227b4774ae893eddb5af228316bf12438_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3cec9edb33ec4ad1b8dc43a96e2f9ce00a3459da35045d4d40c4a14f832b6642_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:54f0c81247ecf883a89bfae897b0c35fa09210aaf2ea36bc8b2ee85e0d003e99_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b92528212e47e36b81e734f7d7bf1eb3e382ac289ea4f5b78e4969546f177c03_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:7743f57cf37c3b0761feb4ee7e8bc4968c42b56c69b0d007b2fa4352124705d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:8fa5cc6ccc9113ab5809d1c3203d585b8620671c91d3e8b2ca34a25da4f6305c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:9d43c733c062f0c0832f258f4c4208481cb3aa23e71ddda92e877f74c5ebacac_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:c6849aa69f7d708acb9e548235e1d38b2f60e3b723af763c87389c0d063aa2fb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:246cd84ad63b81d28d223b5845e95dfdab64ecd42d30bd8b4ccd0123d2e9563c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2be2634f368cd9d42152b41858695204d61041ceb822c78eddd55ec731cea168_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:9e0d65d5983b92546329e7c80badc5b82c9729c505390894f907eaf98c0510ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:dfef273bdf82465bc631b1a77b1dfeb5b72bae9fbb9ec5934663234d74a1fae2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:672cd57b7408021f154ffb4a112206d07c075e6918d12e8e2511d6ca96ce2def_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:674f91f59e682bba705485d65e9ebf56942283772439cbdb2399a756fa51dd78_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:aac8bd7f4e1276f4ca8cbebc5e516dfbda48483e70ae0ef81ac851fd8e688590_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f35392d9fe3d68af7f5098d30df41b4f4ab59e1152785f7ce529731c46304d68_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4a435f7017d2a3d08aa7c4f8513e9490f2cc626a0caa8e51755f77a5a033e56b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:868c9ecf78ac840a89bc1d26215c73f569b739d55e4f8c31485318f9cdb78d25_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:90542b1084316136f7619579443ee84f928518ebad992ce8812d579fc655582d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:aff264e555e7d794aba808bbdfe3941afb2cbb1fb41755416998b4a9cd94f1e4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:15c43c38a03e22e53b573d016248e98074896dce39e9078e764ff5f4c1356356_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3f1c3fa237b98002742809665f7005ce1b41d3f1019abfe4a542099eedc8ceb4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:bc800ab3580aa0208848fefa70a039b63f51a2de06b1f60e44a41fe79a05a049_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ebeffab4a5682b6075b9b9c48d9887337128629933529763462e46fb08ba8336_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:1d52b7d2a87c85312bded9db1a8f81f928b6f346f4dd906d3c208403f0f002af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:4a97fa911237506b41ed2e5a7bebbf5e6d6af50c4392ddbbc8675426e507843d_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:815a52b916d3e5b994815b883cac627edcf168ea76e6361babd88297499f0df6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8bfd8d4d2abb8142a08bc7dfb4dec9bb42167f00707f8c3523f1b49ccd8fce5c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:15f04c05213f230b93b63ac6ad35aabfee6d09e990166de1638b582088ad9af2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:25000fded2a83885f814d1054cb9583b45d348656f957f0f78713a4d60207990_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:375577fe1344913d15f75c9f90557c7b74ad4a40140fe08a2d02ed1116a446a7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:97480ad7c86376a6dc9522d8296bac0a9f42dd5a324be5cb29283048be1b7e58_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:15cd578e356b4db3b6ef4eb6bcf0d41054479f52131ba760f54e60b2ee00b0d5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90328c82913752e4eb495e59e42f4d48ced8b60a2117040e0d89bcba58a0dda3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:937f899356eadb6f6127576da2238d6f7d67e57867e9a42454a1b3f8bbaf076a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:d21a50efdfeb977ec3b52c82a910e31e90a2172c08afa958f8f031d736ac90f1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:2eebce8fba164d649042a1f04dc5b7aef61bb696c00c43b65908efcfacc46cbf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3c9a010d472d8bf99f84c99f793bb6e6d6035bdd454dca7d0207d05b1d304dd9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c15042eb7338e6c8a57fa9b77be874646c3238307f9817fa9130a4ea36b116c6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f401ff6e605017cc84834e6544d2d96d07566a66789390be91d1768ed703d87f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0554bda0a96d190367ed63955b942dd3552e1d90e8586dfd9f8879c964bf245d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4b00f3255b6d2853c57735d75c338abeefa817aacc0b5ab0f8cc7a199c5b4572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4cffcb870f80bfe7febbf154a5f684f306c00d402e4bd8654de4dcf2280de636_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:cff88a41d3319a3704c89506fd53a98098c2570549a465b37c592fd2f82d2aa2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:0f8f81c28d5a2b6e638ba1f916111af3f8724e1e556f6c4edf3229b681fdef4a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47b32f9f9174b606702f30d3e4f8cb5f9732efa79df543f936d74d7a25f0e03e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ac1ac4bed8bbb47174edeb84280bc27fd7c32e34225e934f52320820a29c6464_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:ede7db6abe63073a7db5580e4ab9ddd714a011cc9d8a0e364b126ffa159a0a6f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:68083ef6fde047a1e0cb6750f1b9b5f06180631403eb2f1f0c98943d6981e91a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c57a792fdf1ec1f2537c71f4831003a94eb85e0b38e6dbc196f069633f9c1fe7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:cda959893045d09c662d8598e0ef805b5dc58e7a577f2c6dbc57fad49ed9d91c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f96b1808afd9f4668b6ac008696616690a796ace4bdf46e4f2d2c3b46eaafc5e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:314e23a7ac5ead0ab679ea07a0b5cdd22912d27a32ed08971c792220c8a87516_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:50038534a35f68ce3b6fddcb42296c7c934976bcf14454bfaa4b79fbaa4f1322_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:662d71f9a7693f117a52436f7048ae5987ace6d5ed0dfe0b76a4eb46577cd13e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:8da3ae0c230867d7c67107ad8fcd99839b6058f4e9ba9c94c5fc3a865bd20b9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:152d1eb7c35baf2bf21c14332a130e7ac5735a89645f955945beda115a54a7ce_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:2c2b2d482a58d63b961675f262b81c41df95c5ea466966fd39044ec5900b4b86_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:8046bdc82e6e19be1f0023fb4183f99f2149c6eddc2e5c313e115938420e91cd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b8cdf41bb04c0a74b6f2366ae2a296422acdbbc181c85c7f1f5cc3364b486039_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2d454f6cdfa310ea8c032786a5dbd5f63cd70b7696b8dc7c2e18d2ffa2719aa3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2ed5ff1d578de21a7f2e9811679d71fd89b1207b42a2f8727f3539db40f5b1bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:c96dd0ab195d488c16893cef28c9ed06fd08f19b8f4b6e6a878e6cd10b53998a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f7b983db8fd57dd6d97bef9c43e8c5a7f55df9481e5f0343848f85c811bac8ce_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7373ec15d57ced9dd67caf59a41da2585101b72e1cbe8943102870191e58affc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:91ddf5e9b89bb1d2a7415ad5fdcebfe87ef766e9ab66a9f4a7f0b73061c93f69_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:bf063af3d63c18f387deef046b84edd219fde4594cb73257ac44ab602f718b8a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:d6c56b2e17c984a30a7466f660b0391c9407a21930d8a04592a72fc5e3fd4354_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:721e454d1d034d09e33028ab4a466167e7a2b6c4edacbc4d8452e8791aaee05e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8276b4ebbcc8fa82f9b1396dd67da179c6d638890e7612077dfcb72a975e0e0c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:96c9bdd179739c90f9361520b62eb77abd437b660682e9964960d59da029ea33_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:a7f6d66b4c99bb137495a654fde30c4c722fa534fe16a06c5edc3edd442d3289_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:104698275dd37b0299d7c55b1d3f7cf9a216543e76283f042823e868ad781e65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2e466a367949f5170a91fa60922911f45fb120bc6770101fdf7e9e29899047fe_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5810ca6e3616f711ac952decd927a65dda3a12048dda129f280249a159d46a31_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:f7b5d215c80d05064d06c4bc8de0f34b3ae8ff4ab52c487591cee06566dceafb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1ce75bb705ce22107366132679b7b435eb0d2e5ca6096f5669ea5c4eba39da1a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bdada1653c74dd2032018b83650395e8dcd4400b44e45d1d7075ca0128b7b111_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d271eccfc6bcda90d5816dba01a1482932547dd13d29f58ca01511e09f00adf0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d7f7b089242c2a4081239666ed596110d52ac0375a999e3d99f54ba26e7780d1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:14203332e69dfb497d5c7cfa891e593c23cc4533026b810883075f4907ae5f5b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:62080aa196cfb1d11d526d96f0d959da427e02c705f573f52b8b93a70946df5c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:69d47798a0039f140db80fe46bf59f17a6e9482a4bf60eb122e780daf98c8774_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:b9980ce668858713ba13635e2d2283fc5764052facdc68f10862768e4134690c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:6ac80947f89b414a228a5fa246952d7f0d2a365b865473996de6f8a59387bf65_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a2582790564ac6cc6c50ef6dab7190b90598958c2c1e6528d996da7893f01e4e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:d0235656ca22280f648ff96e00b0b60cb83214f0987abedcace3dc92e7cbbf46_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:df429e69c8b88f17f9205af02f208b24fe88c42300dc1895198e50793a0a8759_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5f1a114e8e2ec4e636916abf27de22ce6e7307282fa164bd73bcb55917dc1bee_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:845aa0726919c6280d01d1aa488a139444bf86198082e33f1da3ddb9d91aa3b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e256fd347e78e6e9df6b15ed3b7072a03c36cbef50052c50f9789c1f2fc462dc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e642bc149b91b1e8f1af1dd1adbbd2bbdc0675408226bf886f9b483e84fb15f0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:49c8d9a81ae66bbe6c3504e1ace9c47c215be0ce06eece325d09a313ab176125_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7a0f2d7a12e6a58b606721cb8c6904839abbef9abc1cacbe8f5ee048cdc7a460_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a88df5e988177c695609c5e2c3907e649c76ae5655493fa2e373e5dee27a5787_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:c3b014019ee952648fe431daf8c91735b00f567dc53cb7f10071ed2b6114781b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:53df75df702ff3d28e75d31c80b154b8691871cad09f9fe4d8b8587968b26cac_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:61284ab306583fba757f43bca8e354034efd7d7d86741869f80ff8c6736330fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:724fcbb751a5b0dbe321f26f1faa369b8c11db774dd006a4bdd07b91c337282f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:ed4282878e9ec1a4cea53d2ae22c0b7c7b47516f0137fbd69c57cd4a4d433b59_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:0e8180f0054be56a1b05c112ff78a53f9c03b85db3d772e64b490fdcac8b413c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2ea326d94b9a8dbe7c72d8277eb1b9acba09e28a31b7feab4d0da6b5ca2b2893_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5be84b77a697e8020f8ff238f2356ae9fdfc21c3079e0fd1ec8a59ed449627f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:d452fe99be1146d73fd7d6bc055da9d8159a7b7cd30e19af7bd1b4c7db2e4f56_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:159f1f28a2e419dbe060583df262d57e4f9822702a5892315ddef26e8b53a411_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:405d7b18e225f94d026dbe5c9425d67e07bbaea465838e77b239bafeb88ec5af_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:506cf0f17add5dd97f77e890d044d73a4abc58f824b1566cbe4a7c2d491418e1_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5b3518951de742475ef4a917e7d8ac4385d59ef69f698c48e35069992ee8bde0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:03e0974d0c4b40764d9a33448c0d9db1b77d5305485d03d55e08beba45108048_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1f07c85b71b75492b0be0a5b3efe8160293f4009bf08ff1629c0053025e6e500_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:316e1c24ac311c25614a9153a619282a8edb2743edb97f2f6dc81568761004fb_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e862dc09e931f260c43e31edeba270e4174d5fd032da44ee7268072c28bc19dd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0185094d0de07dfbda3eb8f6da926c84628ac287a3d8a596b30ad16cd5fb46e7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0d8332b88cf58bf38f7c417a3b87e90ec785a310dcaae09498457f03f07e6912_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:bfa4e6ca760511c87cc480a54c602970192e9e57d01b2ad452116bee5023d7ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:d0ad732112def4c292306e2b7caa8712d1d5ae274b12330fa33d3f4cd447f70d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5124a8b96b5064c6e9f83a2b9c8b727419c3de997946285c673e2ec74e99e5aa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:58199579136ebd9ed4bb5e0a29f0585be071889902503b82df099ae279f6c95b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b1e6564c0337754d03a906e142e061eb35079c12fcf19a26a148d6d576c0791a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e764a6528d9b2958d684d7511775c844e2d55f22ae35930c36aa62e791b13811_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:29642f6fa24f79b9631e37f328f71817442b6e0b98c55cbf4df51b67f43dc75f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:464bfd9fed50c2bdd2aa675307d5fe62d314b0d753c7ce4c652b455c83549c78_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:7e0645fdd4a85c0bfda5083073b9fb5a0510dae53714eefeee2c6ba91826b831_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a4ed4f2500560ec67f058b71b6d4c6f7ffc31bd3e44b8562967dd0daeef1ee29_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:37610a4a9ee583580751e53200b0c180c971e7a3ff78a283b1eace7ba54699eb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:3adaa883e7695e4c461def447b6605fec4bbc741df8a4c6f4def4f4e8caba399_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:90c3e20d684e0b90706a8fabb9c9bda2929bb957ffe3e1641ea68fe9dc919cbb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bca5e7b0b05b0f83ac50aab3908767e949840988f59ec2c86c914bcb46440fa8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:15c00e8a07c64398ea157183d7968578626dfd46b36e5b7fa06a35e838882ada_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:1de9cb046bdd0243ef93ed16eb7ed21c1ff467f2ed9c8d8001fc8dc5b7fc4535_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:b00d4d902c4a5652cca3f71aa52733825d68f4a760dad5f97c33689c1dbd78df_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:c52a140672ac75c7a33e6afcd7b1ce6f4669cfdbad702ad471850da9f5b559cd_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:96fdb45a14866309cdc327240cc4ee2c4d0a52030441f370f67f3b1d5d9b2872_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ba7563fc6a628df72b27a445804c04273e2e901be5ddf684eee4cdd2a1ec0089_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0c993f1751e402b5171ddae382606a8760ef3e7b924e69badfe8f5cfd922a75b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:69d73724efc760e7a2cfb5318f0f3abfe72509507017dc6c6475028a671765f7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:bf1e8c534217aac5e4f5f0b519b9ff836d5ee85059efcbaf85651dcbf9f4de14_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:fbec5c24870ed6cd27985bed8371a888e9322898e5ae4d9989e099f05a1c6a23_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:0b7d15b76d5257258a16412ed76ad780b4ca4ed2f9d903f0cdf6c27e777375f3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6dce12cdd98f375e8a7688f4938dd832e5f894c0ba816d4a5a8d6720ff975904_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ca15a4917e9d49b1ad321d274eb134bb50e087e78b124ec538037028ebec48a2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:e6e54b20d0108afd8afc51df9726bb696753ef3efa535da2450ac36aaee6707b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2c9923a709957cdf796db48af7280a76f0ab394b10187cc7c0f7611ca4355c59_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a3d4db4816440b5141aecead32da7cfa9eee4efb8a663c3f0d30a4e23d96d2bf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e8d1112d37f1896d066b02a75aabfe56656f0585a65411eaa661536d00b79e1d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ea499672b939494004cf2c98f49a5fd034e7176d9a33cdd02a2911502c344c20_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:241f02e788dd4e96461372c35e5c6dc19c42942dfaccf134245d523357b0d228_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:2996a001106ac5d87f01d97db9b0c651400bdfa1f274b6a69d4a75281be0f730_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:767a980a6f155e1acc07d36d44c4c10851f0b2c42ca1c8ee06a7fe38dc2a17ac_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c3bc70006292d393c66066d9639ee433b49595a5955bc8e3e8d75a3d71de47b3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:3c008348643ddb3d3beb636f94e6484f5d702b3e0b61cc4dc423452947443c93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:68dbe18a4b283651feb312524b240defa59e3720d5757e49a6177578893bddfa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:922f0d61924693f5fec151806ba85840ee5a681d0279598eaa6f4a4ae36bd07e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:deb4bbeb305282d6d6f762ef9e6988b2cd74c4a48c45bcc639f218f06e2da941_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:306716c7a728280a780f59652712796c70125693428bd31eba43d09ca4b8414f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:688fb2404fabe8055015a5750740f8c43a61dc3f96d0242b15345a54da695af1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:a599e57a75c8b58b8322c2f1482a6eb9102d0f32f5a826363e83369c0c27b3c7_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:c5b8daf8de23a9b371fbb551dde13b23b8a109de5c9ae1d358fdc3ac3ae1cd1e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2049797466a1536cbe9a72805e650920b4847965b8d55585545e9736385f262c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:2d1a053057e8fdbd7349764f2239e0fe5c4b8cb751931a7b440f5148b49669ef_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:949e66496c5222c2e25ddd011802ad724cc41070d17a94d4220e502cf42e32bb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a97a88dc49b9b1516b93a51b5521518b9c7344e1b8c75aef55d5c7ceb600a9f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:06da8736fec692e52b7ac6ca0903e609f8c56c80ae052d9d7c3378160bd734d6_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:52588b3501b5c4a659df8c6fa67529a82927a3ebfe71235af35fe4528c8bc127_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7fd1adbd262ac915998e1f0756125964430ece04bfa1bf9cb5aae594a0df4e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b179331b2fbd75075e5a5dd177cabfbcd10507b9e2d1266c35a3f77c9aff14d9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:40df59e7f7a9c8ffe430cfeec70b382dbd2399ca2416f70c78430203b771a409_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:993cc952a8df4b3682a497f8ca91adfbc06cec00643519e2d31eb10247e85ed3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:aa7e643b62f725713793953349dab3c980010fa7a4dcb01eb67ece3b20693df7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:ff34da17145eba716f0547fb3d699f1351b7f8e93078e3a3dd47ef1ffe7b12c1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:27192491472a9c8a8c1a9fcda175ebb8425395487b777b381e2e6304807fa135_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:2b0988a7db19208c324e2e640771ac1af73388182fe7f2a59cd8b77997c58dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9baacbee7566ea6119f956d1ba8e0168227cba215afef2e5d1c56af4f67cfeb1_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b8cc8679ea4ae64394dd7877579995553e6c7fb5ac6fd6329f722b523bd3523e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:119f807c26230c24bf2bd872c5d9fba04734599a6c00a4c553b90c58726f26ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:126ff96a28e8c6fda0c0e1ed673ae4e98e812e92e19c2505450325e3cb0c854f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:794f3e12469556df772c9409466e331e5cc6e2a58248ac68657575d78fec847f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c29ace5f09df9b5d01d047e7198ea827397d19ab78225ea8e4f7a841a2a0fa78_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:061577ab6cd5c33052e5ad655b233b622c29fa68ddd1c3f5fadcfffa757a7514_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:17f1fa7b9786f3d14a62f469a073279b4cfdbf3d01d392db3663056d406be4a0_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:81078647a13d027b300d6958824ac091ddd3d91d5ec1a3dfbc80046e4fccc155_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:e6214d5ad6dceec04fcd291cb1a9edad1aeba33a9f4155397e1b3070fa4dc7b9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4495a666689c11362b568101686578703d1a9202bb6db0409291bff6d874a567_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:c5a7fb4f6ff7bff9d7cf0dd57b1dd5ceb4fca740624791d5f583cbd9031b5310_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:dd01020f18ac1e81d83cd3d81996196744b37909c5c0461c8b4f2490800a433a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:10bbc864abdb4002c5461cf6fbaca6039b728fba571fb3199f865cfaef284240_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3264a996caa5ff42bbd9d5eab791ae1aa33c6c28677e4fb9a9558419d74febe3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4631021e15f6a76cb0fb6f1f4665157e6e36b87c556ea6e6fb8dcd9516416ea7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0106047d93008d7a2f25dca5eb14abe5350cbb5dae407c85f6b3585c7621fa49_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:90da9ecf47f896403fe73af024849e67b4db3a4ce9a898219ef96c0fac78c99c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a9f86007513374bb4272c285ba7193a4fb334eb561932f365310630ae31bb6ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:3c87b5e3509891ca4d52b8b2103005d6e8974e821645d1d996d142dafa6c613c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:aeb8babfa678e0e8322fbb4030b5554dcdb5d7120930e693112dd5a76f707f7d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d38a03387ff877e630740d9ad11efc6fec091f350f1a812f27187a976183d3fc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5235547ec1813485bad6a3c757a161c62b68fa98dec77ede043b54daf3d6733b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:91ee5cc03768a35363db6da8aeaa61842ba0575105da353a2280c0c15d1d1d21_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:920d42d8e99e8042ab0ea7349b8ab5274a8cb71a9770b0c1fc6faf5069d60f93_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f7407bd24c63fb912dd2c58115c41c6d4e561d129f62af20070b88cb0fe29c78_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7176f77b6eb259daf973359e8dd394807d540240fc5ade31edc352cf21b596ec_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:a70f54b3de8b66d2581f81d34cc3fb67f6c0a765261151e48b601c76c474cd18_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:cbf62d739e5d9109b736a9b1689b15541929b0d77563ccf0c3a5bc90eda6d973_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:f6e5dd275cbd5488be87361b63769c5e7b2721a596aef6bd9b27f166f592c0b2_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:405e0863a8501fab63ab256bc8f4483dfe6735a74afff9fdf5c94a00c231ad59_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:7da0fb71db1169fde5c9492f3cef09828759a04deda5e0c7b35c5640cdaf5e14_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:e3307b98c8dac8218d417087a911c039c1fc4d56bfda74b9154915d4648a04ff_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:fb1529a27e685fb1b5b13a5d1e935a27c9b9591e884ec8f6c22025208ec02596_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1eff1da99f122e74cb4a550215dd9ad693d488c34e1dbe545fda7c9aa0981672_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c7c72d75b54cedb182003c76ee921589e8a305c94667a5e48468fb92b112054_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8b0d99453d90a55ee804f6ff5a6edd61b7254c3d1b52453267872b9e6de5829e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:e888a3ebb6b38ee6709bdd4b4854a5973a75b87f7be879c9ea964364bc4855d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0f009b1cdaf74959c8992037a5d342b8c6d1a355e03b6b470b1d224509464846_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c101dc7d770ca9d7d414200455fcdb48585dd2cb6d46c8b14d3a25ed34d19ae0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:53ec607a3960c0e8bad206c6861d29c2b5d9e6bad6a43841f6566671a65d663c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:c7808698bffc9322ab66dbbd272aa74e775a97b2ca94cdfd440f5fe65827cf39_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:32419a71a40118c6dd625d2ac90766a804a5c2196d5c45cbd95038e7f3879758_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:b23cfc7c35d5fd6c355a57b91a4a73689baf62f68b5c4e8895816745890b003d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:3adc693e2df5a3f68d7b260b4a65200e8b9add4a49d15f37b3c5ad09efd633c0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:b405c964d4cd620cd83c427748edcbd19a7e60dc14903c148abb72bae22d5304_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:f7667ff277eeeb2fe7b19ebe62f833e1fa641d3ef8c58ac767573935092add12_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:6b2cbbff018f0a7f5811eba473e07015c59a23e28c9d410c1918eda1824710e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:bd0afb126524e58fd38b04947f2f2f5e1d038420fcfe94cee6df1a6bde8edfbc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:1565f9a1f0f9282f2160d4067452a3af23a9b2c2b9731c2c6b152110541d45c3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:ae73029e80e1d61e55d17e68891d7be8ba8d263cb60cb76dfc86979dc2ed2667_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b22fe7faebf1fd98b9b3e737f8c35382999ac61926c748cfc5b657059252c9f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:b26b6445f926556a12a341d7f8e7022e80140f3194e75fa8afede951768a0158_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d563f26ef566da43a1c8ab34d29852f477533686074d0adbd29bb98e51195571_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e7364b80a85bad41c868920e640fd848a3dabe8a38a46c82b5b382ec165cd239_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:34d7c1c8d0c8d307649e27abae63aab6db4a7475146c48df61fff41ac502108b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:4bb35d0bda5de1d81c6658ae9106a28f33582ce3cb8ae55abc789195f964c785_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:70ae4c018e379a4c463533c5c42e8ccfc0ef234cc1ea49c7b981315b1f2b03a3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:bc704e9d9e6d42aced3c59f27a9d6656739ea578f156d3e5e35a96a1d724eee8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:07428e38a19ed2e91d0790a3c6d670dd70f1360d3047e22282ede9027eb1e423_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:6f46a56648dd9f09b27cfb2e33c4bbaf67a06899cb5d48fb62e8b6a7935cbadf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7ff5ec4e546de3dfd76180578febc439c54b9ebe3efac76c70fe353ef4d63604_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:deb86940387d21c340691c48c8c8833e109d927ab5505a9b04d68eb37a141b32_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:db6a6881adbb6071336e4848200e0e1e6733bc3567bccd78af674bf4f10868ca_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:f88c94e3f6eec3e741e2a61adbe06b4ca0c17466b2151edfe175696eb725778c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:81ca01a87e2c8d8aab36df6544942c6d567fe1d118a85edf141971bc6c28d8f6_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e5643542d25bbc3d80d9599f621f167ead52004cc306dfdf7df66656063e5022_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:673ac077f9648cca54d512b3b65afa239eb3699432be3fe90fea9a91807531cb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:fdfd059dc6bb308d9db149e89c850196f250d5c80943452845e922a03c8ff3be_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:b411da220530693505f74f13879b0fd786a0aea5119c4278da7a77a5abf54df1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:eb5613cdfae90652f6799e11ff3bfdf0613d168b37ab456f84f9e02f793dc31e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:3dec8c0f4dddea8fcf8908436f81f27edf465d192e56f7a9affb50b0854da02e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:5c30e1348036c7c5ba15331b79918b19991d856fb7a9c28338c6479fe322be36_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8f66eec1892e8dad7be2dbaeed5fd91c7406052a390314dca572b76efa153fbd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:97ff1a4eec965c80025eababf1e465150cc16ba4fceb50fc731c9b31b2728a70_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2740aca26596483ce9333bedeb9805a90efc614a54c671ed7cdf25967c88645d_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:9e4cf703e7c1e249423353160e61ded49816cd243e44dd4d5bf645e2888cb3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ceb97ef042d4f537378ca4f0ba1d2e175de8952a3a684d53147d00ff6a13371f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ebef63581a13b8211d0ba5a843ccb57fa99726000e27e285b083c77835b072ad_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:1e30683fcf260b3e4e4222c008d98e26fb9835f4cce0753869358828908d4abd_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:3339637f6a84e79268410dab42fbed6e480441bbcd056fba67f076d0799f6e67_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:7740caf5f41ef75a1b72e0919007b8c96526e601cabb81543f8dfee8af63f798_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:a0de83cf18d336c19ea214987e67e382cffab05022e12fce60349cc89644374b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:8a1c8e2cc3a4aca2f01d66616a906f0256de691ff1c7ce7f642969cff997dda2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b784d45c590e2de892436fbc87b7f24a6067dbff7ece0c28a84c2032f3109dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d721b3232a077f11f7b868e113f0e4b663f86d36e9d0d6027fb6f0d09c9740a1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:eeeeced0d5466346a4e55ae15ffaf94d1b536673c85e45bdd130018b7d026b31_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:492ca6d716c3504658532892aa821a5840d137585914dc53cc86604291052d30_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:7035421c98933b1006ada36c6d4be4ea2c84c8805c92063a5cfea283d5145a8c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:976472d4d386157cc3906e3c61eaa6fd5293406d5ca5886e19a13a8ff5fd83bd_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c55b471396fa887d1cf4524f114917315a014fb9ff185f181586fb96297bcf94_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:5e171f05602ed4763c8ff022e5a782f5ebb115dcaf373d4a0bc3eb3ad0ccfbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:70d2e932e3f11c91305d2e646a36d8c1a13e9dd1afcad9f7b34a06756ed08f4a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:abe129219e3860db960b8652c85f9480c9ff3d065ce71387ed2df81d0bc74aab_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ccd6c7699ad301e24891630b5f016809a10b82edb8b4a59b78928c517b4d1984_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:2e12b171e8b0d0919e95eec432847ac5aecfe06e78907da661afa3d140b57485_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:677cc67231cc872823aa82ce4fca170aa2efacce1ce3577570ab29fca7a5e88d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:aa4efab44da430162fc3bae9b53a55c18b71f617e0f78259f922b0d18208bc51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:da0a8465f0c4bcc9e8dc7a3f850ab52225b91aa43778e232c0a1d3a6d56c9453_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:6ca1771334abda36970003819a30a99d4df1e34451000fd4c853e18368c55c76_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:edd3ad79d82cd5aa57213f3e2020b97525e5d70c8b0af34ac0187541d1fce0db_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:7969516394d081c5477c5d45b1ee2774be24cb18cf02548d6a789115e4068e14_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:a157973a81e717adfaabf751ff9941bc6698dc1e4e01afabea1e2878cc73e48e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:64e4c0f9951e1d70134ac8fe2b35ad641ac84dce1b6a97561685747c3e5604bc_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7a8fc60d1d9f1a833de3e0b678a81ff290f32ad3b97812cfb5af50ecae801560_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:83a21ea035c0c33ea59191badb197b548f3231e085156882c7361113e370648e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:541218b7a311f217e48d56a7ae5b15baa03d8587b57f43ea6e4a6d13e6b496f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:62f0789f85441f02486ac07fc578c3a8120988581f1bd4dd09a44bd5fdc985e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ecc0c6a2a929e6d370839e43a06044c96fdfec947345c012cddbf0455f6b9fd5_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:f1d1341d2460b9ca974de92fd35f14dd8c95dee905fd2da9cc0f4f711c0f9492_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:330af301ee8080bff7ac4ea35e4b7a2ae117e4f862da3942e6443ae7f070dd1f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:349bfb49426d77b0d8bb851f4a85876f77b42a0954e7f66d9b7271440596efab_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:70592c26647660d80b33263037cded6dc1f5d3980ecebf6a8d54540c67144d35_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:736b58f15407884529ad2bdbf0291b47c954f418b702ac91cc886469df654aad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:12819eff9905db8715ebe85207a0e49eeb3c0fcdf7e33eaae0cac477d89005ca_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c0ba88e6c91d253b49c90322ad1c2a580c0837922ae65e1a3f27972cb88e717a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cadb7b8fdc995306649a203ea9c050218830bca3081833866c941c0f4ab65dcb_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f531950bc313d9e80aea72aa532209085d8c1d67017055da1fae01f7ad4ac98b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:583f40f3834e6efbfef41f494934d8ba8bf8bc9e2599135e320a70f2d91adca4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:9a91b9c4548dbed8b81c5d071f5ea4798ac920719f87710cb7c48fe609f30093_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:abc5b270d572f40102d3c6bf062b856055347bbaf5a36a6ea08ffb98832b5d47_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c4758545477381c5f58966fac7a80375abbef1f8de591cdc95c71e88612e304c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4c35e5d75482b58c8ef656f864a37a5426533737cc155869ae8f8f4812c0daaa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:5c98f7f631a9a1d04f11ca879e423596eb9bd208ee408497adfc34469e295809_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:ce79d11cc1009bb5f64d323c92136f304ebcc13ab16e85f4561113f1b53daf51_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e817d35c31e25a7280eb7f9ceeae819e5ae69cc76aff386bfce4369d7420ca02_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b16691af1f9172ab03ad3dc73766aa4f12e70a269d3cbbc850bdbddb30b9417_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8bd954590d6c1d2faad715319b168b757666f05b2c11f7008d7000e1b49e71fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c745a7824df72a7a16acc1d384630cb7a5a317b2a4079ae053ecf4abce4785ea_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f225940b1bebd884d8bfb0cb5ffcec73914b3246236c6d13c23afdc669faf4b6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5567640589e4a9c6c0db83e44bd6da0ff0cb27197f8402597b909ccda03fe819_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6d567d1d8e2832bdb4d194af0b98f1caed259ef303cd945fdc9523ad88de4c10_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d204d13667fc6fc5c484bbb1817648b8189150924757f3b6afd5f497fb81c1de_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:fc1083469f5a56a0cf509bc81a7c8a379f1516a772baed2b83241918b8ac444c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:1ce40733635fde34f089d7dce529d908f540e0363a9a2ea29345dec4e8bfc099_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:289da37c831ff4985ca71bd613fc55fc4a01b3b3fbfdf0fed989056505290d64_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:78da13ad39dfe6aaaf55da62536d131bf1c2a769d6daa6e29d3b9e031c8a9003_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:f6dae80b9f48f81694bd0adf4f2d502151a099ef26fba5ffd60b071faaea14df_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3b27583a7068a34d1101dd6fba5875e6347845b4c462b505bfa7daf1e4e2580c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:3d19c464e79f0b99c0779dbfbe07f99a88d011a0b3447b5ffe46d840c4b8a8c7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6e1fd8372d29fdfa13cf9eff3f6bd34e8acde464290425cbfad1a399cbd361f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cdbfdd05d267f6b97eca29d78a4c34be2eecc02fb292cccde20dd027c25e3728_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:5521bde2b6ea859e756b1e38fafd336461e31f852e9d702256343b5813bce97c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:627ec4dd8bffa9a677360616f022eebcd45399e0aa6a204e23c94cb8e30777fa_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:f0f841f51c2ee39df6c8c994f0d1bbe11cee8b7330184bb82ddfe2f0786ac9fe_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:fafe4cdcc5fd033ce2c1980467603b09f46a7a1536b9000d07172e3e320a876a_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b76ef910c8a1cb86aa50b11f659bb7dd777fb2f506ca92861d804f0234bcd832_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:d4aedbc1e2aa0402ce0adfe10baf913bb33a2573c2fa7cd94896eb96e7805272_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:dd5143ab898ef03010834906db9a41c5d8618e616f00aaebd7da382919f87e81_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:eef90b9e282a014ef11d846f0e3e229d869496838265f98ebcf26833532c6484_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:53375726ba3a36218b1d5ebe9abac80643c24a4a8f73e0b40496e724da42c63f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ab72f22e369beef0bae1af4e985baf29da4bb307e4b36ab877f0cdc202dbf842_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f21d89b68877c22ffa1008e78432afc4dd33d7e59a612c18cf7ba3418428282b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:f89169f1cf6fd47be50038cc1c80be38e4fb997d7805094b3f6e50034f9c4c20_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3163c519c2a74e16594e0f0802d9f71757555047bdda7296349bc729b5bc61ba_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:454733fd181aace8613cae5f7cf9fcd2de5611445eeb0a78140e6ece467d123c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:501fdd205e9d664a5b40ab08048c05e3d6459129636f16fcb2792f675ecdafdc_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:d8777676903db1df29dc83d82f092247fc41485675d4fae57e2edec5963c3a58_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:14168be5c9331d415776e6d5bbf75925620f2ac6dd6fad5d6335cd210e6a89f7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:2c1aa0bb7c72cb8121821859668386cf5b71d3d3c00f4e18042643a44178266e_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:bf6fb66a27a19d519fcd464b020cad532eb7845016c49b27ee87450839dfab4f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d9bfae1f007c39d04a73292907669a1c0eb274202324001dd9363a0586bef1bc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:144be6c7447f775d70368a593faa4a06558619097b5c9162579c7bc0e58af2d4_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:1c7ff8a957041a664e7543f00ad31eb25828b15944f454f1afd80c4a117835ea_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:80fe8b64a58bc37b5f4b654c99ca337a7e6ffa03243642941d0c02a671bd55ed_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:b96f3d71faa0f8715d591fd5308cf49e0c0371238b615af891659f20a35c3606_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:74f37add8ffc2ca28249af47ed0b7a424f5e5f36d3890007bacfcedf87469228_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:63c1669f32e1bcd135839cdce3809d2bd4f9631dba5d8e6b9fa4779389a1756e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:01e74a1f3c0145e21ea73409ba6699b395fbc7de062832d0c256b72fbf9d7be8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:85ecb4f7231fda30f627f25db21b2191c2b9e312204de22737a735b6f79cf15c_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:8ddd77f3c414e02cc89cf68a3ffe7dd44a259583e0daa338f0eb69de0c560176_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e1646be6adbc50f28dbcfd1303b1b31e89748e554930a85a2b7a349054ca482a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61b9dad9981ea653434bcf99daaea48b1e037f06be3fbb35a7c8fb831b0e1b3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:6854ffa5302dc4a1d796aa9d6cbe84c44f58614a3cefd1c93fbf3d6af3602e66_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:b214c07afd3ac6385150f3f01cdb9c00b0eaaebf1f56e6d39e766c3b1cc8ddb8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:f3ed8c69008609414a397d4ed5904ade45dcf22e70d1439ad382e605343ce1ba_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40a5791fedefd5005709a743a3fe212e4412bad90a383ef9678c6868fea044a3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:720d8946c5b758f7831bd227c3c7729ed28e8d4104a5a29e32581094642db2c7_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b5fa290a5254626a0aee5d5feac622724c5f69302170a1579816b9992e4a46d3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:b74655c6c5b87e4acd3da9a59ba881f438e5d26b11208e6083dc2d7b594de000_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:0d45e9f3989e9ae8e55184c14bacff1ca42dee7e339b010e805f9d7b8bc72743_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9e50ffbfd67f6060783bb2fd887583351b3b807a7b1ae84d5c45e4d6386781be_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:d4601f148263f4772fd5ddc00d7a5af1251593fd05e5979b8c45c148edc43813_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:f7d0d3af8ca46727b17eae293799af55706dedd1ff2e9ef0fa73f804fd7a93fa_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:398e3bfd66ce7b26b4c3189748cc651f97eac12325b4a3b033118591d6d5757f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:3f0a8a5999709f6e5fd01bc9c73c9aae75ea34e4eb919693b17ac272a2903b59_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:93d2109a65337d8cfb2dc5d50b63500126c18ed04a32bc6927a2ddbb765a79fa_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d0db82b2b89ad2caebb82b9d7fa86f31155a10756603df9ad2512b4d4fa99682_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:017b3a94b5e9b50027d8c7df751513381bfddee4f9763e6b171701ded246b018_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:802dc9e6e13ff5c40e7c8e034e6e59c1eaacbcd4042453051f8bc583ea3c55f8_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e1635e15282fbc5014166f94bca3bfd66ea67c8a39498c82c3df3644cd4ed329_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:fa00b00b97e9b1b90b0307050c69c62707a9408e3d4cbf2729049ce845ae8c6c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:364f170e8d8479c5665324bc090a4b85816a26b29f6cf6c37229bdcec5fd727d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:4d56d44948e48ebc0586cd8b06645d0c7bcb85b08b99fde5e7877b0ea3284e5f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:8d915cdfd545812bc2c65e0de2e8c3ad0f542cab71a0d3fdf30778474bc332b4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:93519ae5a1aaf561b0099493020c31244ee4e29724955db1eaf5426848499936_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:03bb1fa9caf59a7c682fbc7769b61fc1b3d476cd31e3a2eb059aff24a7830807_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:76ba49300b455b80b4a2c4f56a63971f5a2056e267ab41b665daedebfc3c6e3f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:7ab4b17ea986d4f58dc5dc009d6a4116cc264c8b2512d20d84b145d80784faa5_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b056c0bec20e7b9ed01e3d641c34b87ec81b84e64f8267880e548b3260ff8d29_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0ed6d2b51a3130ad0eb49c7b81b6f73b193d2f74bb9e59d7f6a59abc009b0e35_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1d5acc0de319d7b2b2ad321d7ed74735b96e18db68aefcb4fea23fa9e94fcc9c_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:2e24b76aec9cb640e4e859251655ef8cfd04ce8529f1720bf4d35a59ca742ef7_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:879e78d1bf0954de97a9d0cd9249ae0afaa4a600eecf780f77466501931eb219_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5320be81fb3dc973a1787d4d43b0cc86be3151acede6a7b3f916d516f21f889b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:80caf5d5e4718660596a8cf69d09813b78d3483ec4f3d4934c4a352833768e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:84798d8b3475ecfde2c8e48e3d6a203f1fcc8259d9f5988b7eb4ed0f5d077d02_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:e4d83038f6318ba193a8d439830f3646f1f5db50e7e01cb9f6573968eae8af9f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:0ce1f2302003b8b5c467c76af8ac420b099140317ed752787d9d93aff0796d51_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:65bba5770d7179ad51cd9c819a7a5dbb0a91d55e78acb37ae49270834829b05a_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:baec5178c80653bc1cd6f2826cf13e7353c22d13ab588a571fd2a80fdd2cbca0_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d800b74d6dd26ef1e3b0f99f5604b4e439929d5f779a9a4ce88d5c44af0d6a2f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:751504a2e6fb4365ad181fd3166380f9858754c6632442a99659a6e1c752101b_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:89103c5f4cca1a7c481268c2fa0e162f5c7fb9c086e697644e4bec650d044456_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:95b9355eb3e9c6894e6b6f5b74bb190dc1a3ba66ef6f93daf566a8d8eacae8e8_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:9ab95f93416c69ccd5aa04dbc54857d1deaf813b54a81214e64e2aac2166e75a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7332e172486e993d520b962f79d48c7629bf45cb4dfb89c6f21785e5f76b1ac2_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7d4ec1f48a72e208120f467186b6d386eefec2cca05e6a05ae6c0f9dd357af96_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:81854387ab7f8c16994aab40ddb0a4fb96350b75bed3a7c9c88574e95042a605_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:b796ede419f2d38889c64932457b0dd32713110536a1076d27aa43668398c040_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:07a248ae61eadb2b7f831fe8c48e2fbfd4d002e99af40fb731546c1ff4fd4517_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:1aac00df794865ef4b29487ff0fffecba6fcc77781574c3baa1063ab3c9d1ac3_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:358aded5e5b933ded000666814b9beadcb702dae6f3c32c0377f60079289b56f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:941c71daa16180c08c62cb401a0337fdb7931e0bbf363172723eede6439b6439_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:af7ee1662c750ad93850355b378f1fcf89f82800b8b1296329330413b8f6b451_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c3bddf840fe2e0f59401f042bf2ed3b3cd4d8c38603c7fb3b25b46e9e3e94b85_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:c914d6e71c0e032e87a5c913e3b96938d8878db7bc1c007ed9b17290a3db4a9c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fbc20fa977d53b35061e464456989f233244c5d66d95265650a37a68d0a7b00b_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:7290800c1daf30f811a950110a15ab75cd366eba88327d15030dc2be641e1d73_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:79a55a8f071a671aa667d004023766a1a52fd1ba4c441ce43ffe3d64d25f3cc1_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:8ffbdb88d99f919f7b618eadc658bf076416e901fbc203cf55c9318948bcce04_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ac6f32a99a4603ced80f3de875426f11f65e6ef9092c70eae34c55e8e2441894_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:15c27f381a52f0e464dbd020219e6e0c153aa472f6140714ee358fbe54fa51e6_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:322c75e1fadf3b630489fa1d44e8f20d210a8844fc0c99e891bfa6afdd5788df_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:382ac2d68ee09e9bb317640c7104d9f5eca2c4711cad65f27e63316695734c3c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f339b4af25e544d0dc71c5cb32f75a2664fc26733ed0f84842fcb91492b4b572_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4228378f29c2a2ea6786f235e25ed90c829a6f1bcf797a0ca5dbefc68095318a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:aa500f1ed50889a2c3cec788f3afc75e5e7042a53b4091133544b89c6007d6f4_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d732505bbda1adfc700e58ea8b52de16c3e511aaeedc03c6d1b932057b9b3f49_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f08cd932a21aeb24010b26705b8f81efd2a7ac9ec5510218e092394e7c3caa97_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:465a95c091a46a7e7e81938a8331eace8d31030dc7ac5050e76e0e85d0d783f4_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9cd7ad89abd5c8714a4d1e937bf8d3afbd1895438158e004034b6449426e0f1b_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:db23d67d179adca91b2df030e1f3f393b663b060f69e91c59cccdbb4c6f962c2_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:f147e6552d4e3859e81c5c458b948166aaed3d52177646cf836f660e09821e90_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:be7e4f88c8c1c251b6da8bb077bfafaf07996e1049883032c01dcb083d2b69a9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:ca86ca908c8ed122877d807672755659c9b89121a6337a31ddf91026a1b7b4e3_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:5cbbb4de0c7a51f75443667c20504c37bdf7b8aff6b4e3ee1be648bf21d7d204_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:6abd2673fd5cf3f13f6690b800c0f13da3cc27789b893c36c90ba24b74a6d8ad_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:dd603679761efbbcc72aab2aedb6a3ab5347fed742deb00ff9acdba2d1b3a900_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:de364c7cce9e684039e934f0a5e88b708315e8c48e883b525dc8ac08d3025c72_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:225ea8cfb55c9a5a671cb2a318b4dd4c9179e120a88b2d9c8788082256328532_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5089c8fad9d390857929e5b8d00ea909b1c7a05ffcc3b6194d58031b38297822_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:2333e75896298787fb09e4381d8f640d8f445a5c30856634aa193624c74594d2_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3e722ef46e927611868643137cfa03a834c08428a605eecb271ed927dbd85e8d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:75d309cde2da024a0086dd4afedf7cbd249c75b9b9e82e5289d5bf53d0f945f0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ccfe2a3261e63248529ad261a9fd8c42197ff86b8b0fcc87ef6dae2247e07650_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:117beca810a6438cb30146aafb16c88a7fdeb0d2a595ce709d4df47d552115cf_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:858195a6106548c6329bfa557980ef1a8e25cf6332fb812d7d82996f4a8e63ec_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cc70d16cba21745009818cc4deb6944f3dd7200a7572acab778166846f372634_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e15db28b46fd48915a083f30738267302e134a67ff8d5c0a9f2581c8e70b215c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:1f40d8bc6c36b52a31aa335035dc66dcc7464f9ff9e613b8a74bb2045f9d9973_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:72a9906f736c83a8a082c5b23e86a42a038b71a7a533e1e5faba9f682fa411f9_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c42ed662d1c73a7e41c554aff6279d6460679f8e63fe1f58298d3d245f27b0e5_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f794e20d8cc735f4f70fd57c3aba67f873df5e0bc91df60dabc68660e632e49c_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5f0275578312c055162cdb4468f1f08c09f0776a4d44c5e1d8ee4e9cc56ec3eb_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:82daabe51f9a44a4029ad1264626aa538105c93fa576555eacb481e679b81d97_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d5822340c30c3ea671890161416bcf0b36550cdd2687a1b5c54f6c4d37776f0f_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dfdbad73b463ad66764492c27bf06ae165f3ab184f685158f3677aaf25ab467f_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5928b467e38cce9a970336428d3722f4ce77639e67a3a21b7b4fbf4bb2bf5f48_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:5b39d18c6f98212659bf30e504097408b83798a17d60837fd20f2b1cc4227bb9_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9b7b1c2afec684d83e361f91e05173515da002414c7c7ada34a9c521a7e2761e_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e96a515fb2e44329008cfe57dc361caf12ace2d05ca581ae53b2ba1fc58e3177_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:3f4889427d46734578bc9e4c04e6d0730d9e6df97e889703f012447efc480929_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:a41bb6d3183f93f3e3d7fbbb47f17e3d1b8ff3e96db8187ff7bc9308b9dd9cf8_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b985fe559b00bd2ce208766ff7c152678f8748511f7ce08560579284a0c1b6e1_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f412c717e29ea319b5ad0b5757e51595f1b76d7f7ab7c95a5deacc485bf26d80_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:7de87ca9a335cb120c7b3aa8d79f9e49fbb51cb1d53343695cae09ae33b17e82_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:852562a69b65e84c454aec7dab14b3addb0df6ccc58133c593708457fc4934b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c4b73c21e553581622867f9a2b18e65892d519ce9215be3e445599d0f335343b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fb30b4a5d0007c7ea85e1008302cc5b19b6671f20e66a43da15a1bf4c4075974_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:49e951a6e37bc6d93bf554497242fcdf91111f4000dd3cc404487604ebf5495d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bdf092ace48dc8042005d75b5fd5eff24454119c5af4d56dd7be10954625495f_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c38fdb4e629c6abe3ec3202c84381d0d383cb706b82d485867e518bf96d2ae1e_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c8d60960086ebcf7e00ed2c35794f0fe48389dd9b0ac768848ba5040460fddc6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:09a5548aaeb2f3a732c45dfb8457473b371e6492a2c3db38b91a43ac2cf541e3_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:2176c1fee072fecc19c765be4dc9340e4cb009360d2fd8204240652ecaeb73b7_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b621eb412208f1803ced33749300fff54c5f404d123c3d971b0ad247d3863272_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b735487198022abc97681c10abe9ffa89b01eeab678cce034ae8496878b6c7ae_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:421bae410da7ab0fb5cab24f083dda523778f8e283214430915e96f2720275ad_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:451ca59d35c6a156b2b3b26993d7ee5f929126aeb87f0b72558c1381c50241b8_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:8057e8666548b4fbd8a9da1a5802eb973b2fdec587faf761aec0db843592fc0b_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:926af01d4403247445ddf94977746f7db092f546a9b1c9467dce98f166eaeedf_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:31422d0f4b3729ec2ad2aa07ec88940c93cb22e5603143afc9998e529ccee5d9_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:4424bcbdb55424eb805c277a3dab4a81f1ce1d84bb53d90b21e9153732127a72_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b4df16e8c76e8f0d1a81d1356a29dc15230c72dcb9a5dcc12931b8a565ecdeb3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dd8680a4ef39315bcee972f39e5f5e23914fa2bbb3cc12f19aaefe4eb71cc831_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:4fd9d28294ca7e5f9649f80ef233b7e42c51dc15fa6cde61b8ee3f9d2e4c8088_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:68f3306c8fb10b6e67f55ae2e01d53b887c4a8fffff710741924e60f75776c52_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a99f154140ac77b56e50ab7b98b1137d15085d7cfb603ee49bf366feaf80c49c_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:ae5c7bfdfba44fafd286296370c3a92e6caf171ac8d02bdd1044893f362cb4f6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:86a062dc451c75cfd9a24f7b69fe3d8a2779357ee6c2f7bae346837756100afe_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:fa882f90f1bf71b2a20121b98bbc62b2c6e6f4c86c56c294438da3ff1a96dd8f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:08ca65bef2e87d1a5516ed95beadc9315d914e23ee3415023e77f4c69ce9c32a_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:e7c6584c2327ea506d7da93b39037cbd878c79efd74459ee2fa26bcdc4a51cdc_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:33561d01b7c7e3e13779b4be3570019b7a614b04acd8aaf94bee06af294945b3_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:c1e43030a3ed06c373454862f34990a4e7bbd75bb8cec5573162aeffac7ec7e9_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f0d5d7e1aa59a25bb629a3ba407afe2b9587aef9e7613973f77e61b270c659d_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:47f74dad4227e9889fb27861a903e925f066386d6a3fee34104dfe087b55f3d6_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6991df72aa75d57bd87226681eae16f3c847ae440b1025d3529bb7d11a153909_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:7915a908f4718f804f5e38ccf3a6740b1b55d77bb9ed97af4179f84caea143f5_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:1f290e34d857c4e4562417b6781fa5ab32cfe4384b4c5b063babe6ba83a4420f_amd64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56fea6399578743caee6819db7ed29480a0975fbbd08619e4c693d8deab27d4d_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:d1b0a9ca865499434ae28640dd271854eb0bc7d988f19c6ee5a490dff78226e0_arm64",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:f696ce4a9f33caef8d9fe19384f39f4dfc55b4728796b5c65fbf72246dab686a_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:07baffb42539a64fdfb87a555cc0f71df76fd5a7ce8960a994a1176b7c0817e0_s390x",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:13e0ad46a366b40797a0626a4e71deee76538b549290a1fc5500d2f09af2ee13_ppc64le",
"Red Hat OpenShift Container Platform 4.2:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:5e0deb66c1015d9e084c78a8a5cdfbf5e795aeaaa2dad96d2388f760d14c30dc_amd64",
"Red Hat OpenShift Container Platform 4.2: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:2145
Vulnerability from csaf_redhat - Published: 2026-02-05 15:53 - Updated: 2026-02-11 05:08Notes
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Kiali 1.73.26 for Red Hat OpenShift Service Mesh 2.6\n\nThis update has a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Kiali 1.73.26, for Red Hat OpenShift Service Mesh 2.6, provides observability for the service mesh by offering a visual representation of the mesh topology and metrics, helping users monitor, trace, and manage efficiently\n\nSecurity Fix(es):\n\n* kiali-ossmc-rhel8: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-rhel8: qs: Denial of Service via improper input validation in array parsing (CVE-2025-15284)\n\n* kiali-ossmc-rhel8: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)\n\n* kiali-rhel8: prototype pollution in _.unset and _.omit functions (CVE-2025-13465)",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:2145",
"url": "https://access.redhat.com/errata/RHSA-2026:2145"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13465",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15284",
"url": "https://access.redhat.com/security/cve/CVE-2025-15284"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/cve-2025-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/updates/classification",
"url": "https://access.redhat.com/security/updates/classification"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_2145.json"
}
],
"title": "Red Hat Security Advisory: Kiali 1.73.26 for Red Hat OpenShift Service Mesh 2.6",
"tracking": {
"current_release_date": "2026-02-11T05:08:38+00:00",
"generator": {
"date": "2026-02-11T05:08:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "4.7.1"
}
},
"id": "RHSA-2026:2145",
"initial_release_date": "2026-02-05T15:53:57+00:00",
"revision_history": [
{
"date": "2026-02-05T15:53:57+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-02-05T15:54:01+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-02-11T05:08:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Service Mesh 2.6",
"product": {
"name": "Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:service_mesh:2.6::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Service Mesh"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel8@sha256%3Af7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel8@sha256%3A4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140426"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel8@sha256%3Aad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel8@sha256%3A6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140426"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel8@sha256%3Aedc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel8@sha256%3A9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140426"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-rhel8@sha256%3Ad16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"product": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"product_id": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kiali-ossmc-rhel8@sha256%3Aee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-service-mesh\u0026tag=1770140426"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64 as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64 as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64 as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64 as a component of Red Hat OpenShift Service Mesh 2.6",
"product_id": "Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
},
"product_reference": "registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Service Mesh 2.6"
}
]
},
"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",
"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.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13465"
},
{
"category": "external",
"summary": "RHBZ#2431740",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431740"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13465",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13465"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13465"
},
{
"category": "external",
"summary": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg",
"url": "https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg"
}
],
"release_date": "2026-01-21T19:05:28.846000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-02-05T15:53:57+00:00",
"details": "See Kiali 1.73.26 documentation at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/service_mesh/service-mesh-2-x",
"product_ids": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2145"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement strict input validation before passing any property paths to the _.unset and _.omit functions to block attempts to access the prototype chain. Ensure that strings like __proto__, constructor and prototype are blocked, for example.",
"product_ids": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
]
}
],
"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",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2425946"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in qs, a module used for parsing query strings. A remote attacker can exploit an improper input validation vulnerability by sending specially crafted HTTP requests that use bracket notation (e.g., `a[]=value`). This bypasses the `arrayLimit` option, which is designed to limit the size of parsed arrays and prevent resource exhaustion. Successful exploitation can lead to memory exhaustion, causing a Denial of Service (DoS) where the application crashes or becomes unresponsive, making the service unavailable to users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "qs: qs: Denial of Service via improper input validation in array parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products that utilize the `qs` module for parsing query strings, particularly when processing user-controlled input with bracket notation. The `arrayLimit` option, intended to prevent resource exhaustion, is bypassed when bracket notation (`a[]=value`) is used, allowing a remote attacker to cause a denial of service through memory exhaustion. This can lead to application crashes or unresponsiveness, making the service unavailable.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_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-05T15:53:57+00:00",
"details": "See Kiali 1.73.26 documentation at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/service_mesh/service-mesh-2-x",
"product_ids": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:2145"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:4e910b08863756516707f2ad8198c04dc6d706c78f481561a3b2e896800d4dbe_amd64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:6851b4cf7f6da95b614431535c7c0c744dc441ff4abf9aaa203b46d652a529b9_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:9a867a9efe090c85cb5cd198e82663d87b1bc29061420def8cfe119c45c025fc_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-ossmc-rhel8@sha256:ee28a1278a21783acbda367a8f10d51dd81a7f4af5dcba64c1d58402bac0b43d_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:ad1449f9047107c23d5b0e53c3ca148a12a9729dd7aa474c5eadb55870f314fa_arm64",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:d16be0b09ee231bda769ddb16cb781e2a0fefca42243ada15c8c176d5ba711a8_s390x",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:edc436424d55e4f8e0765ac59a4b2dcbd38dce49532db0bd917ca5b3c4526fac_ppc64le",
"Red Hat OpenShift Service Mesh 2.6:registry.redhat.io/openshift-service-mesh/kiali-rhel8@sha256:f7701158e0b0c3b0091d30be1dfe2fba73386160536929025504e903cf8c8bd9_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "qs: qs: Denial of Service via improper input validation in array parsing"
}
]
}
MSRC_CVE-2025-15284
Vulnerability from csaf_microsoft - Published: 2025-12-02 00:00 - Updated: 2026-01-08 01:40Notes
{
"document": {
"category": "csaf_vex",
"csaf_version": "2.0",
"distribution": {
"text": "Public",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en-US",
"notes": [
{
"category": "general",
"text": "To determine the support lifecycle for your software, see the Microsoft Support Lifecycle: https://support.microsoft.com/lifecycle",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "The information provided in the Microsoft Knowledge Base is provided \\\"as is\\\" without warranty of any kind. Microsoft disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. In no event shall Microsoft Corporation or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if Microsoft Corporation or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply.",
"title": "Disclaimer"
}
],
"publisher": {
"category": "vendor",
"contact_details": "secure@microsoft.com",
"name": "Microsoft Security Response Center",
"namespace": "https://msrc.microsoft.com"
},
"references": [
{
"category": "self",
"summary": "CVE-2025-15284 arrayLimit bypass in bracket notation allows DoS via memory exhaustion - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2025/msrc_cve-2025-15284.json"
},
{
"category": "external",
"summary": "Microsoft Support Lifecycle",
"url": "https://support.microsoft.com/lifecycle"
},
{
"category": "external",
"summary": "Common Vulnerability Scoring System",
"url": "https://www.first.org/cvss"
}
],
"title": "arrayLimit bypass in bracket notation allows DoS via memory exhaustion",
"tracking": {
"current_release_date": "2026-01-08T01:40:35.000Z",
"generator": {
"date": "2026-01-08T08:58:26.431Z",
"engine": {
"name": "MSRC Generator",
"version": "1.0"
}
},
"id": "msrc_CVE-2025-15284",
"initial_release_date": "2025-12-02T00:00:00.000Z",
"revision_history": [
{
"date": "2026-01-03T01:02:10.000Z",
"legacy_version": "1",
"number": "1",
"summary": "Information published."
},
{
"date": "2026-01-08T01:40:35.000Z",
"legacy_version": "2",
"number": "2",
"summary": "Information published."
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "3.0",
"product": {
"name": "Azure Linux 3.0",
"product_id": "17084"
}
},
{
"category": "product_version",
"name": "2.0",
"product": {
"name": "CBL Mariner 2.0",
"product_id": "17086"
}
}
],
"category": "product_name",
"name": "Azure Linux"
},
{
"category": "product_name",
"name": "azl3 python-tensorboard 2.16.2-6",
"product": {
"name": "azl3 python-tensorboard 2.16.2-6",
"product_id": "3"
}
},
{
"category": "product_name",
"name": "cbl2 python-tensorboard 2.11.0-3",
"product": {
"name": "cbl2 python-tensorboard 2.11.0-3",
"product_id": "2"
}
},
{
"category": "product_name",
"name": "cbl2 reaper 3.1.1-22",
"product": {
"name": "cbl2 reaper 3.1.1-22",
"product_id": "1"
}
}
],
"category": "vendor",
"name": "Microsoft"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 python-tensorboard 2.16.2-6 as a component of Azure Linux 3.0",
"product_id": "17084-3"
},
"product_reference": "3",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 python-tensorboard 2.11.0-3 as a component of CBL Mariner 2.0",
"product_id": "17086-2"
},
"product_reference": "2",
"relates_to_product_reference": "17086"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "cbl2 reaper 3.1.1-22 as a component of CBL Mariner 2.0",
"product_id": "17086-1"
},
"product_reference": "1",
"relates_to_product_reference": "17086"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"flags": [
{
"label": "component_not_present",
"product_ids": [
"17084-3",
"17086-2",
"17086-1"
]
}
],
"notes": [
{
"category": "general",
"text": "harborist",
"title": "Assigning CNA"
}
],
"product_status": {
"known_not_affected": [
"17084-3",
"17086-2",
"17086-1"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-15284 arrayLimit bypass in bracket notation allows DoS via memory exhaustion - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2025/msrc_cve-2025-15284.json"
}
],
"title": "arrayLimit bypass in bracket notation allows DoS via memory exhaustion"
}
]
}
CERTFR-2026-AVI-0065
Vulnerability from certfr_avis - Published: 2026-01-21 - Updated: 2026-01-21
De multiples vulnérabilités ont été découvertes dans les produits Atlassian. Certaines d'entre elles permettent à un attaquant de provoquer une exécution de code arbitraire à distance, un déni de service à distance et une atteinte à la confidentialité des données.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
| Vendor | Product | Description | ||
|---|---|---|---|---|
| Atlassian | Jira | Jira Software Server versions 11.3.x antérieures à 11.3.0 | ||
| Atlassian | Confluence | Confluence Server versions antérieures à 8.5.31 | ||
| Atlassian | Jira | Jira Service Management Data Center versions antérieures à 5.12.29 | ||
| Atlassian | Jira | Jira Service Management Server versions 11.x antérieures à 11.2.1 | ||
| Atlassian | Jira | Jira Service Management Data Center versions 11.x antérieures à 11.2.1 | ||
| Atlassian | Jira | Jira Software Data Center versions 11.2.x antérieures à 11.2.1 | ||
| Atlassian | Jira | Jira Software Server versions 11.2.x antérieures à 11.2.1 | ||
| Atlassian | Jira | Jira Software Data Center versions 10.x antérieures à 10.3.16 | ||
| Atlassian | Jira | Jira Service Management Server versions 10.x antérieures à 10.3.16 | ||
| Atlassian | Jira | Jira Service Management Server versions 11.3.x antérieures à 11.3.0 | ||
| Atlassian | Confluence | Confluence Server versions 9.x antérieures à 9.2.13 | ||
| Atlassian | Confluence | Confluence Data Center versions 10.x antérieures à 10.2.2 | ||
| Atlassian | Jira | Jira Software Data Center versions antérieures à 9.12.26 | ||
| Atlassian | Jira | Jira Service Management Data Center versions 11.3.x antérieures à 11.3.1 | ||
| Atlassian | Confluence | Confluence Data Center versions antérieures à 8.5.31 | ||
| Atlassian | Jira | Jira Software Server versions antérieures à 9.12.26 | ||
| Atlassian | Confluence | Confluence Data Center versions 9.x antérieures à 9.2.13 | ||
| Atlassian | Jira | Jira Service Management Data Center versions 10.x antérieures à 10.3.16 | ||
| Atlassian | Jira | Jira Software Server versions 10.x antérieures à 10.3.16 | ||
| Atlassian | Jira | Jira Service Management Server versions antérieures à 5.12.29 | ||
| Atlassian | Jira | Jira Software Data Center versions 11.3.x antérieures à 11.3.0 |
{
"$ref": "https://www.cert.ssi.gouv.fr/openapi.json",
"affected_systems": [
{
"description": "Jira Software Server versions 11.3.x ant\u00e9rieures \u00e0 11.3.0",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Confluence Server versions ant\u00e9rieures \u00e0 8.5.31",
"product": {
"name": "Confluence",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Data Center versions ant\u00e9rieures \u00e0 5.12.29",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Server versions 11.x ant\u00e9rieures \u00e0 11.2.1",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Data Center versions 11.x ant\u00e9rieures \u00e0 11.2.1",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Data Center versions 11.2.x ant\u00e9rieures \u00e0 11.2.1",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Server versions 11.2.x ant\u00e9rieures \u00e0 11.2.1",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Data Center versions 10.x ant\u00e9rieures \u00e0 10.3.16",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Server versions 10.x ant\u00e9rieures \u00e0 10.3.16",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Server versions 11.3.x ant\u00e9rieures \u00e0 11.3.0",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Confluence Server versions 9.x ant\u00e9rieures \u00e0 9.2.13",
"product": {
"name": "Confluence",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Confluence Data Center versions 10.x ant\u00e9rieures \u00e0 10.2.2",
"product": {
"name": "Confluence",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Data Center versions ant\u00e9rieures \u00e0 9.12.26",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Data Center versions 11.3.x ant\u00e9rieures \u00e0 11.3.1",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Confluence Data Center versions ant\u00e9rieures \u00e0 8.5.31",
"product": {
"name": "Confluence",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Server versions ant\u00e9rieures \u00e0 9.12.26",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Confluence Data Center versions 9.x ant\u00e9rieures \u00e0 9.2.13",
"product": {
"name": "Confluence",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Data Center versions 10.x ant\u00e9rieures \u00e0 10.3.16",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Server versions 10.x ant\u00e9rieures \u00e0 10.3.16",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Service Management Server versions ant\u00e9rieures \u00e0 5.12.29",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
},
{
"description": "Jira Software Data Center versions 11.3.x ant\u00e9rieures \u00e0 11.3.0",
"product": {
"name": "Jira",
"vendor": {
"name": "Atlassian",
"scada": false
}
}
}
],
"affected_systems_content": "",
"content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).",
"cves": [
{
"name": "CVE-2025-9287",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9287"
},
{
"name": "CVE-2025-49146",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-49146"
},
{
"name": "CVE-2022-25883",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-25883"
},
{
"name": "CVE-2025-66516",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66516"
},
{
"name": "CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"name": "CVE-2024-21538",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-21538"
},
{
"name": "CVE-2024-45296",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45296"
},
{
"name": "CVE-2021-3807",
"url": "https://www.cve.org/CVERecord?id=CVE-2021-3807"
},
{
"name": "CVE-2024-45801",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45801"
},
{
"name": "CVE-2022-45693",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-45693"
},
{
"name": "CVE-2025-54988",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-54988"
},
{
"name": "CVE-2025-9288",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9288"
},
{
"name": "CVE-2025-52434",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-52434"
},
{
"name": "CVE-2025-53689",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-53689"
}
],
"initial_release_date": "2026-01-21T00:00:00",
"last_revision_date": "2026-01-21T00:00:00",
"links": [],
"reference": "CERTFR-2026-AVI-0065",
"revisions": [
{
"description": "Version initiale",
"revision_date": "2026-01-21T00:00:00.000000"
}
],
"risks": [
{
"description": "D\u00e9ni de service \u00e0 distance"
},
{
"description": "Injection de code indirecte \u00e0 distance (XSS)"
},
{
"description": "Ex\u00e9cution de code arbitraire \u00e0 distance"
},
{
"description": "Contournement de la politique de s\u00e9curit\u00e9"
},
{
"description": "Atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es"
}
],
"summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans les produits Atlassian. Certaines d\u0027entre elles permettent \u00e0 un attaquant de provoquer une ex\u00e9cution de code arbitraire \u00e0 distance, un d\u00e9ni de service \u00e0 distance et une atteinte \u00e0 la confidentialit\u00e9 des donn\u00e9es.",
"title": "Multiples vuln\u00e9rabilit\u00e9s dans les produits Atlassian",
"vendor_advisories": [
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26667",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26667"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16497",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16497"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16496",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16496"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian CONFSERVER-101827",
"url": "https://jira.atlassian.com/browse/CONFSERVER-101827"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26665",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26665"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16485",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16485"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26661",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26661"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16491",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16491"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian CONFSERVER-101878",
"url": "https://jira.atlassian.com/browse/CONFSERVER-101878"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16501",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16501"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26663",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26663"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16503",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16503"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26662",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26662"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16459",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16459"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26654",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26654"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSWSERVER-26656",
"url": "https://jira.atlassian.com/browse/JSWSERVER-26656"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian CONFSERVER-101872",
"url": "https://jira.atlassian.com/browse/CONFSERVER-101872"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16502",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16502"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian CONFSERVER-101842",
"url": "https://jira.atlassian.com/browse/CONFSERVER-101842"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16499",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16499"
},
{
"published_at": "2026-01-20",
"title": "Bulletin de s\u00e9curit\u00e9 Atlassian JSDSERVER-16465",
"url": "https://jira.atlassian.com/browse/JSDSERVER-16465"
}
]
}
CERTFR-2026-AVI-0112
Vulnerability from certfr_avis - Published: 2026-02-02 - Updated: 2026-02-02
De multiples vulnérabilités ont été découvertes dans les produits VMware. Elles permettent à un attaquant de provoquer un problème de sécurité non spécifié par l'éditeur.
Solutions
Se référer au bulletin de sécurité de l'éditeur pour l'obtention des correctifs (cf. section Documentation).
| Vendor | Product | Description | ||
|---|---|---|---|---|
| VMware | Tanzu Platform | Foundation Core pour VMware Tanzu Platform versions antérieures à 3.1.7 | ||
| VMware | Tanzu Kubernetes Grid Integrated Edition | Tanzu Kubernetes Grid Integrated Edition (TKGi) - Mgmt Console versions antérieures à 1.24.0 | ||
| VMware | Tanzu Platform | Isolation Segmentation pour VMware Tanzu Platform versions antérieures à 10.2.7+LTS-T | ||
| VMware | N/A | NodeJS Buildpack versions antérieures à 1.8.74 | ||
| VMware | Tanzu Platform | Foundation Core pour VMware Tanzu Platform versions antérieures à 3.2.3 | ||
| VMware | Tanzu Platform | Telemetry pour VMware Tanzu Platform versions antérieures à 2.4.0 | ||
| VMware | N/A | Platform Automation Toolkit versions antérieures à 5.4.0 | ||
| VMware | N/A | VMware Harbor Registry versions antérieures à 2.14.0 | ||
| VMware | Tanzu Platform | Isolation Segmentation pour VMware Tanzu Platform versions antérieures à 10.3.4 |
| Title | Publication Time | Tags | ||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||
{
"$ref": "https://www.cert.ssi.gouv.fr/openapi.json",
"affected_systems": [
{
"description": "Foundation Core pour VMware Tanzu Platform versions ant\u00e9rieures \u00e0 3.1.7",
"product": {
"name": "Tanzu Platform",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "Tanzu Kubernetes Grid Integrated Edition (TKGi) - Mgmt Console versions ant\u00e9rieures \u00e0 1.24.0",
"product": {
"name": "Tanzu Kubernetes Grid Integrated Edition",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "Isolation Segmentation pour VMware Tanzu Platform versions ant\u00e9rieures \u00e0 10.2.7+LTS-T",
"product": {
"name": "Tanzu Platform",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "NodeJS Buildpack versions ant\u00e9rieures \u00e0 1.8.74",
"product": {
"name": "N/A",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "Foundation Core pour VMware Tanzu Platform versions ant\u00e9rieures \u00e0 3.2.3",
"product": {
"name": "Tanzu Platform",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "Telemetry pour VMware Tanzu Platform versions ant\u00e9rieures \u00e0 2.4.0",
"product": {
"name": "Tanzu Platform",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "Platform Automation Toolkit versions ant\u00e9rieures \u00e0 5.4.0",
"product": {
"name": "N/A",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "VMware Harbor Registry versions ant\u00e9rieures \u00e0 2.14.0",
"product": {
"name": "N/A",
"vendor": {
"name": "VMware",
"scada": false
}
}
},
{
"description": "Isolation Segmentation pour VMware Tanzu Platform versions ant\u00e9rieures \u00e0 10.3.4",
"product": {
"name": "Tanzu Platform",
"vendor": {
"name": "VMware",
"scada": false
}
}
}
],
"affected_systems_content": "",
"content": "## Solutions\n\nSe r\u00e9f\u00e9rer au bulletin de s\u00e9curit\u00e9 de l\u0027\u00e9diteur pour l\u0027obtention des correctifs (cf. section Documentation).",
"cves": [
{
"name": "CVE-2025-8715",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8715"
},
{
"name": "CVE-2025-53547",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-53547"
},
{
"name": "CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"name": "CVE-2025-9231",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9231"
},
{
"name": "CVE-2025-68973",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68973"
},
{
"name": "CVE-2025-10148",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-10148"
},
{
"name": "CVE-2025-14087",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14087"
},
{
"name": "CVE-2025-22872",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22872"
},
{
"name": "CVE-2025-28164",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-28164"
},
{
"name": "CVE-2025-0913",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-0913"
},
{
"name": "CVE-2025-47907",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-47907"
},
{
"name": "CVE-2026-24882",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24882"
},
{
"name": "CVE-2023-45288",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-45288"
},
{
"name": "CVE-2025-6075",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6075"
},
{
"name": "CVE-2025-22228",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22228"
},
{
"name": "CVE-2025-58185",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58185"
},
{
"name": "CVE-2025-55752",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-55752"
},
{
"name": "CVE-2025-58767",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58767"
},
{
"name": "CVE-2024-38819",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-38819"
},
{
"name": "CVE-2025-55198",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-55198"
},
{
"name": "CVE-2025-15284",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15284"
},
{
"name": "CVE-2026-1485",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1485"
},
{
"name": "CVE-2022-49390",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-49390"
},
{
"name": "CVE-2025-48060",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-48060"
},
{
"name": "CVE-2025-21855",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-21855"
},
{
"name": "CVE-2024-21510",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-21510"
},
{
"name": "CVE-2025-14512",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14512"
},
{
"name": "CVE-2025-8291",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8291"
},
{
"name": "CVE-2025-61921",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61921"
},
{
"name": "CVE-2023-34231",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-34231"
},
{
"name": "CVE-2025-61727",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61727"
},
{
"name": "CVE-2025-64718",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64718"
},
{
"name": "CVE-2024-28180",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-28180"
},
{
"name": "CVE-2025-65637",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65637"
},
{
"name": "CVE-2025-22233",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22233"
},
{
"name": "CVE-2025-47910",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-47910"
},
{
"name": "CVE-2024-38820",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-38820"
},
{
"name": "CVE-2025-10966",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-10966"
},
{
"name": "CVE-2025-47906",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-47906"
},
{
"name": "CVE-2025-31133",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-31133"
},
{
"name": "CVE-2025-64505",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64505"
},
{
"name": "CVE-2025-58188",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58188"
},
{
"name": "CVE-2025-4674",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-4674"
},
{
"name": "CVE-2022-29526",
"url": "https://www.cve.org/CVERecord?id=CVE-2022-29526"
},
{
"name": "CVE-2025-65945",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65945"
},
{
"name": "CVE-2025-28162",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-28162"
},
{
"name": "CVE-2025-55754",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-55754"
},
{
"name": "CVE-2025-64506",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64506"
},
{
"name": "CVE-2025-52881",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-52881"
},
{
"name": "CVE-2025-22868",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22868"
},
{
"name": "CVE-2025-3360",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-3360"
},
{
"name": "CVE-2025-64720",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-64720"
},
{
"name": "CVE-2025-61724",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61724"
},
{
"name": "CVE-2025-61723",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61723"
},
{
"name": "CVE-2025-9232",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9232"
},
{
"name": "CVE-2025-61795",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61795"
},
{
"name": "CVE-2025-14762",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14762"
},
{
"name": "CVE-2025-8713",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8713"
},
{
"name": "CVE-2025-66471",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66471"
},
{
"name": "CVE-2026-21441",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21441"
},
{
"name": "CVE-2024-45337",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-45337"
},
{
"name": "CVE-2024-53427",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-53427"
},
{
"name": "CVE-2025-61725",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61725"
},
{
"name": "CVE-2025-65018",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-65018"
},
{
"name": "CVE-2025-7039",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-7039"
},
{
"name": "CVE-2025-12818",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12818"
},
{
"name": "CVE-2025-48989",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-48989"
},
{
"name": "CVE-2026-24842",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24842"
},
{
"name": "CVE-2025-22874",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22874"
},
{
"name": "CVE-2025-55199",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-55199"
},
{
"name": "CVE-2025-61594",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61594"
},
{
"name": "CVE-2025-47912",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-47912"
},
{
"name": "CVE-2025-11414",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11414"
},
{
"name": "CVE-2025-54410",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-54410"
},
{
"name": "CVE-2025-52565",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-52565"
},
{
"name": "CVE-2026-24883",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24883"
},
{
"name": "CVE-2025-39964",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-39964"
},
{
"name": "CVE-2025-39993",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-39993"
},
{
"name": "CVE-2025-58186",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58186"
},
{
"name": "CVE-2025-8714",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8714"
},
{
"name": "CVE-2025-9086",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9086"
},
{
"name": "CVE-2025-58187",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58187"
},
{
"name": "CVE-2025-13601",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13601"
},
{
"name": "CVE-2025-12817",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12817"
},
{
"name": "CVE-2025-4673",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-4673"
},
{
"name": "CVE-2025-22871",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22871"
},
{
"name": "CVE-2024-38828",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-38828"
},
{
"name": "CVE-2025-6966",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6966"
},
{
"name": "CVE-2025-58181",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58181"
},
{
"name": "CVE-2025-8959",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8959"
},
{
"name": "CVE-2025-47914",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-47914"
},
{
"name": "CVE-2025-40018",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-40018"
},
{
"name": "CVE-2024-53218",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-53218"
},
{
"name": "CVE-2025-67499",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-67499"
},
{
"name": "CVE-2025-58058",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58058"
},
{
"name": "CVE-2025-22869",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22869"
},
{
"name": "CVE-2025-58189",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58189"
},
{
"name": "CVE-2025-22870",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22870"
},
{
"name": "CVE-2025-11413",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11413"
},
{
"name": "CVE-2024-23337",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-23337"
},
{
"name": "CVE-2025-61748",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61748"
},
{
"name": "CVE-2025-22235",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-22235"
},
{
"name": "CVE-2025-9230",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-9230"
},
{
"name": "CVE-2025-7339",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-7339"
},
{
"name": "CVE-2024-53090",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-53090"
},
{
"name": "CVE-2025-8916",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8916"
},
{
"name": "CVE-2025-23419",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-23419"
},
{
"name": "CVE-2025-8885",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8885"
},
{
"name": "CVE-2025-41249",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-41249"
},
{
"name": "CVE-2025-11412",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11412"
},
{
"name": "CVE-2026-1484",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1484"
},
{
"name": "CVE-2025-7424",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-7424"
},
{
"name": "CVE-2024-50067",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-50067"
},
{
"name": "CVE-2024-47220",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-47220"
},
{
"name": "CVE-2025-54388",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-54388"
},
{
"name": "CVE-2026-1489",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1489"
},
{
"name": "CVE-2026-24881",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-24881"
},
{
"name": "CVE-2025-41242",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-41242"
},
{
"name": "CVE-2024-38816",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-38816"
},
{
"name": "CVE-2025-53057",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-53057"
},
{
"name": "CVE-2025-6442",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6442"
},
{
"name": "CVE-2025-53066",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-53066"
},
{
"name": "CVE-2016-1000027",
"url": "https://www.cve.org/CVERecord?id=CVE-2016-1000027"
},
{
"name": "CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"name": "CVE-2025-11494",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11494"
},
{
"name": "CVE-2024-47691",
"url": "https://www.cve.org/CVERecord?id=CVE-2024-47691"
},
{
"name": "CVE-2025-66418",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-66418"
}
],
"initial_release_date": "2026-02-02T00:00:00",
"last_revision_date": "2026-02-02T00:00:00",
"links": [],
"reference": "CERTFR-2026-AVI-0112",
"revisions": [
{
"description": "Version initiale",
"revision_date": "2026-02-02T00:00:00.000000"
}
],
"risks": [
{
"description": "Non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur"
}
],
"summary": "De multiples vuln\u00e9rabilit\u00e9s ont \u00e9t\u00e9 d\u00e9couvertes dans les produits VMware. Elles permettent \u00e0 un attaquant de provoquer un probl\u00e8me de s\u00e9curit\u00e9 non sp\u00e9cifi\u00e9 par l\u0027\u00e9diteur.",
"title": "Multiples vuln\u00e9rabilit\u00e9s dans les produits VMware",
"vendor_advisories": [
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36902",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36902"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36908",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36908"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36897",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36897"
},
{
"published_at": "2026-02-01",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36912",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36912"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36904",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36904"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36900",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36900"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36903",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36903"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36909",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36909"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36899",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36899"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36906",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36906"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36907",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36907"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36901",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36901"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36905",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36905"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36898",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36898"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36910",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36910"
},
{
"published_at": "2026-02-02",
"title": "Bulletin de s\u00e9curit\u00e9 VMware 36911",
"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36911"
}
]
}
WID-SEC-W-2026-0105
Vulnerability from csaf_certbund - Published: 2026-01-13 23:00 - Updated: 2026-02-04 23:00Notes
{
"document": {
"aggregate_severity": {
"text": "mittel"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Red Hat Enterprise Linux (RHEL) ist eine popul\u00e4re Linux-Distribution.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer oder authentisierter Angreifer kann mehrere Schwachstellen in Red Hat Developer Hub ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren, beliebigen Code auszuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen und Daten zu manipulieren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-0105 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-0105.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-0105 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-0105"
},
{
"category": "external",
"summary": "RedHat Security Advisory vom 2026-01-13",
"url": "https://access.redhat.com/errata/RHSA-2026:0531"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:0761 vom 2026-01-19",
"url": "https://access.redhat.com/errata/RHSA-2026:0761"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:1730 vom 2026-02-02",
"url": "https://access.redhat.com/errata/RHSA-2026:1730"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:1942 vom 2026-02-04",
"url": "https://access.redhat.com/errata/RHSA-2026:1942"
},
{
"category": "external",
"summary": "Fedora Security Advisory FEDORA-2026-A84E0AD039 vom 2026-02-05",
"url": "https://bodhi.fedoraproject.org/updates/FEDORA-2026-a84e0ad039"
}
],
"source_lang": "en-US",
"title": "Red Hat Developer Hub: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-02-04T23:00:00.000+00:00",
"generator": {
"date": "2026-02-05T09:39:44.532+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2026-0105",
"initial_release_date": "2026-01-13T23:00:00.000+00:00",
"revision_history": [
{
"date": "2026-01-13T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-01-18T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-01-20T23:00:00.000+00:00",
"number": "3",
"summary": "Korrektur Plattformauswahl"
},
{
"date": "2026-02-02T23:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-02-04T23:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von Red Hat und Fedora aufgenommen"
}
],
"status": "final",
"version": "5"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Fedora Linux",
"product": {
"name": "Fedora Linux",
"product_id": "74185",
"product_identification_helper": {
"cpe": "cpe:/o:fedoraproject:fedora:-"
}
}
}
],
"category": "vendor",
"name": "Fedora"
},
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
},
{
"category": "product_version_range",
"name": "Developer Hub \u003c1.8.2",
"product": {
"name": "Red Hat Enterprise Linux Developer Hub \u003c1.8.2",
"product_id": "T049943"
}
},
{
"category": "product_version",
"name": "Developer Hub 1.8.2",
"product": {
"name": "Red Hat Enterprise Linux Developer Hub 1.8.2",
"product_id": "T049943-fixed",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:developer_hub__1.8.2"
}
}
}
],
"category": "product_name",
"name": "Enterprise Linux"
}
],
"category": "vendor",
"name": "Red Hat"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15284",
"product_status": {
"known_affected": [
"67646",
"T049943",
"74185"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-15284"
},
{
"cve": "CVE-2025-64756",
"product_status": {
"known_affected": [
"67646",
"T049943",
"74185"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-64756"
},
{
"cve": "CVE-2025-65945",
"product_status": {
"known_affected": [
"67646",
"T049943",
"74185"
]
},
"release_date": "2026-01-13T23:00:00.000+00:00",
"title": "CVE-2025-65945"
}
]
}
WID-SEC-W-2026-0243
Vulnerability from csaf_certbund - Published: 2026-01-27 23:00 - Updated: 2026-01-28 23:00Notes
{
"document": {
"aggregate_severity": {
"text": "mittel"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Red Hat OpenShift ist eine \"Platform as a Service\" (PaaS) L\u00f6sung zur Bereitstellung von Applikationen in der Cloud.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein entfernter, anonymer Angreifer kann eine Schwachstelle in Red Hat OpenShift Container Platform ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-0243 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-0243.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-0243 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-0243"
},
{
"category": "external",
"summary": "Red Hat Security Advisory vom 2026-01-27",
"url": "https://access.redhat.com/errata/RHSA-2026:1000"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:1517 vom 2026-01-29",
"url": "https://access.redhat.com/errata/RHSA-2026:1517"
}
],
"source_lang": "en-US",
"title": "Red Hat OpenShift Container Platform: Schwachstelle erm\u00f6glicht Denial of Service",
"tracking": {
"current_release_date": "2026-01-28T23:00:00.000+00:00",
"generator": {
"date": "2026-01-29T07:51:15.729+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2026-0243",
"initial_release_date": "2026-01-27T23:00:00.000+00:00",
"revision_history": [
{
"date": "2026-01-27T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-01-28T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Red Hat aufgenommen"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux",
"product": {
"name": "Red Hat Enterprise Linux",
"product_id": "67646",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:-"
}
}
},
{
"branches": [
{
"category": "product_version_range",
"name": "Container Platform \u003c4.20.12",
"product": {
"name": "Red Hat OpenShift Container Platform \u003c4.20.12",
"product_id": "T050367"
}
},
{
"category": "product_version",
"name": "Container Platform 4.20.12",
"product": {
"name": "Red Hat OpenShift Container Platform 4.20.12",
"product_id": "T050367-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:container_platform__4.20.12"
}
}
}
],
"category": "product_name",
"name": "OpenShift"
}
],
"category": "vendor",
"name": "Red Hat"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15284",
"product_status": {
"known_affected": [
"67646",
"T050367"
]
},
"release_date": "2026-01-27T23:00:00.000+00:00",
"title": "CVE-2025-15284"
}
]
}
WID-SEC-W-2026-0177
Vulnerability from csaf_certbund - Published: 2026-01-20 23:00 - Updated: 2026-01-28 23:00Notes
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Bamboo ist ein Werkzeug zur kontinuierlichen Integration und Bereitstellung, das automatisierte Builds, Tests und Freigaben in einem einzigen Arbeitsablauf verbindet.\r\nBitbucket ist ein Git-Server zur Sourcecode-Versionskontrolle.\r\nConfluence ist eine kommerzielle Wiki-Software.\r\nJira ist eine Webanwendung zur Softwareentwicklung.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen in Atlassian Bamboo, Atlassian Bitbucket, Atlassian Confluence und Atlassian Jira ausnutzen, um beliebigen Programmcode auszuf\u00fchren, um Sicherheitsvorkehrungen zu umgehen, um einen Denial of Service Angriff durchzuf\u00fchren, und um einen Cross-Site Scripting Angriff durchzuf\u00fchren.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Linux\n- Sonstiges\n- UNIX\n- Windows",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-0177 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-0177.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-0177 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-0177"
},
{
"category": "external",
"summary": "Atlassian Support Security Bulletin vom 2026-01-20",
"url": "https://confluence.atlassian.com/security/security-bulletin-january-20-2026-1712324819.html"
},
{
"category": "external",
"summary": "Deell Security Update",
"url": "https://www.dell.com/support/kbdoc/en-us/000281732/dsa-2025-075-security-update-for-dell-data-protection-advisor-for-multiple-component-vulnerabilities"
}
],
"source_lang": "en-US",
"title": "Atlassian Bamboo, Bitbucket, Confluence und Jira: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-01-28T23:00:00.000+00:00",
"generator": {
"date": "2026-01-29T07:51:12.449+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2026-0177",
"initial_release_date": "2026-01-20T23:00:00.000+00:00",
"revision_history": [
{
"date": "2026-01-20T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-01-25T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Dell aufgenommen"
},
{
"date": "2026-01-28T23:00:00.000+00:00",
"number": "3",
"summary": "Referenz(en) aufgenommen: EUVD-2026-4913"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "Data Center \u003c12.0.2",
"product": {
"name": "Atlassian Bamboo Data Center \u003c12.0.2",
"product_id": "T050227"
}
},
{
"category": "product_version",
"name": "Data Center 12.0.2",
"product": {
"name": "Atlassian Bamboo Data Center 12.0.2",
"product_id": "T050227-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:bamboo:data_center__12.0.2"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c10.2.13",
"product": {
"name": "Atlassian Bamboo Data Center \u003c10.2.13",
"product_id": "T050228"
}
},
{
"category": "product_version",
"name": "Data Center 10.2.13",
"product": {
"name": "Atlassian Bamboo Data Center 10.2.13",
"product_id": "T050228-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:bamboo:data_center__10.2.13"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c9.6.21",
"product": {
"name": "Atlassian Bamboo Data Center \u003c9.6.21",
"product_id": "T050229"
}
},
{
"category": "product_version",
"name": "Data Center 9.6.21",
"product": {
"name": "Atlassian Bamboo Data Center 9.6.21",
"product_id": "T050229-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:bamboo:data_center__9.6.21"
}
}
}
],
"category": "product_name",
"name": "Bamboo"
},
{
"branches": [
{
"category": "product_version_range",
"name": "Data Center \u003c10.1.1",
"product": {
"name": "Atlassian Bitbucket Data Center \u003c10.1.1",
"product_id": "T050230"
}
},
{
"category": "product_version",
"name": "Data Center 10.1.1",
"product": {
"name": "Atlassian Bitbucket Data Center 10.1.1",
"product_id": "T050230-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:bitbucket:data_center__10.1.1"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c9.4.15",
"product": {
"name": "Atlassian Bitbucket Data Center \u003c9.4.15",
"product_id": "T050231"
}
},
{
"category": "product_version",
"name": "Data Center 9.4.15",
"product": {
"name": "Atlassian Bitbucket Data Center 9.4.15",
"product_id": "T050231-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:bitbucket:data_center__9.4.15"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c8.19.26",
"product": {
"name": "Atlassian Bitbucket Data Center \u003c8.19.26",
"product_id": "T050232"
}
},
{
"category": "product_version",
"name": "Data Center 8.19.26",
"product": {
"name": "Atlassian Bitbucket Data Center 8.19.26",
"product_id": "T050232-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:bitbucket:data_center__8.19.26"
}
}
}
],
"category": "product_name",
"name": "Bitbucket"
},
{
"branches": [
{
"category": "product_version_range",
"name": "Data Center \u003c10.2.2",
"product": {
"name": "Atlassian Confluence Data Center \u003c10.2.2",
"product_id": "T050233"
}
},
{
"category": "product_version",
"name": "Data Center 10.2.2",
"product": {
"name": "Atlassian Confluence Data Center 10.2.2",
"product_id": "T050233-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:confluence:data_center__10.2.2"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c9.2.13",
"product": {
"name": "Atlassian Confluence Data Center \u003c9.2.13",
"product_id": "T050234"
}
},
{
"category": "product_version",
"name": "Data Center 9.2.13",
"product": {
"name": "Atlassian Confluence Data Center 9.2.13",
"product_id": "T050234-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:confluence:data_center__9.2.13"
}
}
}
],
"category": "product_name",
"name": "Confluence"
},
{
"branches": [
{
"category": "product_version_range",
"name": "Data Center \u003c11.3.0",
"product": {
"name": "Atlassian Jira Data Center \u003c11.3.0",
"product_id": "T050235"
}
},
{
"category": "product_version",
"name": "Data Center 11.3.0",
"product": {
"name": "Atlassian Jira Data Center 11.3.0",
"product_id": "T050235-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:jira:data_center__11.3.0"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c11.2.1",
"product": {
"name": "Atlassian Jira Data Center \u003c11.2.1",
"product_id": "T050236"
}
},
{
"category": "product_version",
"name": "Data Center 11.2.1",
"product": {
"name": "Atlassian Jira Data Center 11.2.1",
"product_id": "T050236-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:jira:data_center__11.2.1"
}
}
},
{
"category": "product_version_range",
"name": "Data Center \u003c10.3.16",
"product": {
"name": "Atlassian Jira Data Center \u003c10.3.16",
"product_id": "T050237"
}
},
{
"category": "product_version",
"name": "Data Center 10.3.16",
"product": {
"name": "Atlassian Jira Data Center 10.3.16",
"product_id": "T050237-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:jira:data_center__10.3.16"
}
}
},
{
"category": "product_version_range",
"name": "\u003c9.12.26",
"product": {
"name": "Atlassian Jira \u003c9.12.26",
"product_id": "T050238"
}
},
{
"category": "product_version",
"name": "9.12.26",
"product": {
"name": "Atlassian Jira 9.12.26",
"product_id": "T050238-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:atlassian:jira:9.12.26"
}
}
}
],
"category": "product_name",
"name": "Jira"
}
],
"category": "vendor",
"name": "Atlassian"
},
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "\u003c19.12",
"product": {
"name": "Dell Data Protection Advisor \u003c19.12",
"product_id": "T050283"
}
},
{
"category": "product_version",
"name": "19.12",
"product": {
"name": "Dell Data Protection Advisor 19.12",
"product_id": "T050283-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:data_protection_advisor:19.12"
}
}
}
],
"category": "product_name",
"name": "Data Protection Advisor"
}
],
"category": "vendor",
"name": "Dell"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2021-3807",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2021-3807"
},
{
"cve": "CVE-2022-25883",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2022-25883"
},
{
"cve": "CVE-2022-45693",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2022-45693"
},
{
"cve": "CVE-2024-21538",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2024-21538"
},
{
"cve": "CVE-2024-38286",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2024-38286"
},
{
"cve": "CVE-2024-45296",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2024-45296"
},
{
"cve": "CVE-2024-45801",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2024-45801"
},
{
"cve": "CVE-2025-12383",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-12383"
},
{
"cve": "CVE-2025-15284",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-15284"
},
{
"cve": "CVE-2025-27152",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-27152"
},
{
"cve": "CVE-2025-41249",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-41249"
},
{
"cve": "CVE-2025-48976",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-48976"
},
{
"cve": "CVE-2025-48989",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-48989"
},
{
"cve": "CVE-2025-49146",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-49146"
},
{
"cve": "CVE-2025-52434",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-52434"
},
{
"cve": "CVE-2025-52999",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-52999"
},
{
"cve": "CVE-2025-53689",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-53689"
},
{
"cve": "CVE-2025-54988",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-54988"
},
{
"cve": "CVE-2025-55163",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-55163"
},
{
"cve": "CVE-2025-55752",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-55752"
},
{
"cve": "CVE-2025-64775",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-64775"
},
{
"cve": "CVE-2025-66516",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-66516"
},
{
"cve": "CVE-2025-9287",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-9287"
},
{
"cve": "CVE-2025-9288",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2025-9288"
},
{
"cve": "CVE-2026-21569",
"product_status": {
"known_affected": [
"T050283",
"T050235",
"T050234",
"T050237",
"T050236",
"T050231",
"T050230",
"T050233",
"T050232",
"T050228",
"T050227",
"T050238",
"T050229"
]
},
"release_date": "2026-01-20T23:00:00.000+00:00",
"title": "CVE-2026-21569"
}
]
}
GHSA-6RW7-VPXM-498P
Vulnerability from github – Published: 2025-12-30 21:02 – Updated: 2026-02-10 19:59Summary
The arrayLimit option in qs did not enforce limits for bracket notation (a[]=1&a[]=2), only for indexed notation (a[0]=1). This is a consistency bug; arrayLimit should apply uniformly across all array notations.
Note: The default parameterLimit of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than parameterLimit regardless of arrayLimit, because each a[]=value consumes one parameter slot. The severity has been reduced accordingly.
Details
The arrayLimit option only checked limits for indexed notation (a[0]=1&a[1]=2) but did not enforce it for bracket notation (a[]=1&a[]=2).
Vulnerable code (lib/parse.js:159-162):
if (root === '[]' && options.parseArrays) {
obj = utils.combine([], leaf); // No arrayLimit check
}
Working code (lib/parse.js:175):
else if (index <= options.arrayLimit) { // Limit checked here
obj = [];
obj[index] = leaf;
}
The bracket notation handler at line 159 uses utils.combine([], leaf) without validating against options.arrayLimit, while indexed notation at line 175 checks index <= options.arrayLimit before creating arrays.
PoC
const qs = require('qs');
const result = qs.parse('a[]=1&a[]=2&a[]=3&a[]=4&a[]=5&a[]=6', { arrayLimit: 5 });
console.log(result.a.length); // Output: 6 (should be max 5)
Note on parameterLimit interaction: The original advisory's "DoS demonstration" claimed a length of 10,000, but parameterLimit (default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.
Impact
Consistency bug in arrayLimit enforcement. With default parameterLimit, the practical DoS risk is negligible since parameterLimit already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when parameterLimit is explicitly set to a very high value.
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "qs"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.14.1"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2025-15284"
],
"database_specific": {
"cwe_ids": [
"CWE-20"
],
"github_reviewed": true,
"github_reviewed_at": "2025-12-30T21:02:54Z",
"nvd_published_at": "2025-12-29T23:15:42Z",
"severity": "HIGH"
},
"details": "### Summary\n\nThe `arrayLimit` option 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` should apply uniformly across all array notations.\n\n**Note:** The default `parameterLimit` of 1000 effectively mitigates the DoS scenario originally described. With default options, bracket notation cannot produce arrays larger than `parameterLimit` regardless of `arrayLimit`, because each `a[]=value` consumes one parameter slot. The severity has been reduced accordingly.\n\n### Details\n\nThe `arrayLimit` option 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\n**Vulnerable code** (`lib/parse.js:159-162`):\n```javascript\nif (root === \u0027[]\u0027 \u0026\u0026 options.parseArrays) {\n obj = utils.combine([], leaf); // No arrayLimit check\n}\n```\n\n**Working code** (`lib/parse.js:175`):\n```javascript\nelse if (index \u003c= options.arrayLimit) { // Limit checked here\n obj = [];\n obj[index] = leaf;\n}\n```\n\nThe bracket notation handler at line 159 uses `utils.combine([], leaf)` without validating against `options.arrayLimit`, while indexed notation at line 175 checks `index \u003c= options.arrayLimit` before creating arrays.\n\n### PoC\n\n```javascript\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**Note on parameterLimit interaction:** The original advisory\u0027s \"DoS demonstration\" claimed a length of 10,000, but `parameterLimit` (default: 1000) caps parsing to 1,000 parameters. With default options, the actual output is 1,000, not 10,000.\n\n### Impact\n\nConsistency bug in `arrayLimit` enforcement. With default `parameterLimit`, the practical DoS risk is negligible since `parameterLimit` already caps the total number of parsed parameters (and thus array elements from bracket notation). The risk increases only when `parameterLimit` is explicitly set to a very high value.",
"id": "GHSA-6rw7-vpxm-498p",
"modified": "2026-02-10T19:59:52Z",
"published": "2025-12-30T21:02:54Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/ljharb/qs/security/advisories/GHSA-6rw7-vpxm-498p"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15284"
},
{
"type": "WEB",
"url": "https://github.com/ljharb/qs/commit/3086902ecf7f088d0d1803887643ac6c03d415b9"
},
{
"type": "PACKAGE",
"url": "https://github.com/ljharb/qs"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"type": "CVSS_V3"
},
{
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N",
"type": "CVSS_V4"
}
],
"summary": "qs\u0027s arrayLimit bypass in its bracket notation allows DoS via memory exhaustion"
}
NCSC-2026-0034
Vulnerability from csaf_ncscnl - Published: 2026-01-22 09:03 - Updated: 2026-01-22 09:03Notes
{
"document": {
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE"
}
},
"lang": "nl",
"notes": [
{
"category": "legal_disclaimer",
"text": "The Netherlands Cyber Security Center (henceforth: NCSC-NL) maintains this page to enhance access to its information and security advisories. The use of this security advisory is subject to the following terms and conditions:\n\n NCSC-NL makes every reasonable effort to ensure that the content of this page is kept up to date, and that it is accurate and complete. Nevertheless, NCSC-NL cannot entirely rule out the possibility of errors, and therefore cannot give any warranty in respect of its completeness, accuracy or continuous keeping up-to-date. The information contained in this security advisory is intended solely for the purpose of providing general information to professional users. No rights can be derived from the information provided therein.\n\n NCSC-NL and the Kingdom of the Netherlands assume no legal liability or responsibility for any damage resulting from either the use or inability of use of this security advisory. This includes damage resulting from the inaccuracy of incompleteness of the information contained in the advisory.\n This security advisory is subject to Dutch law. All disputes related to or arising from the use of this advisory will be submitted to the competent court in The Hague. This choice of means also applies to the court in summary proceedings."
},
{
"category": "description",
"text": "Atlassian heeft kwetsbaarheden verholpen in verschillende producten, welke gebruik maken van Oracle middle-ware producten zoals de Oracle Utilities Application Framework, WebLogic Server, Data Integrator en Business Intelligence Enterprise Edition.",
"title": "Feiten"
},
{
"category": "description",
"text": "Deze kwetsbaarheden stellen ongeauthenticeerde aanvallers in staat om een denial of service (DoS) of om zich toegang te verschaffen tot gevoelige gegevens.\nEen reeks kwetsbaarheden is afkomstig van diverse Oracle-middleware software, welke in Atlassian-producten is verwerkt. Deze kwetsbaarheden zijn verholpen in de Critical Patch Update van januari 2026 van Oracle en verwerkt in de getroffen Atlassian producten.",
"title": "Interpretaties"
},
{
"category": "description",
"text": "Atlassian heeft updates uitgebracht om de kwetsbaarheden te verhelpen. Zie bijgevoegde referenties voor meer informatie.",
"title": "Oplossingen"
},
{
"category": "general",
"text": "medium",
"title": "Kans"
},
{
"category": "general",
"text": "high",
"title": "Schade"
},
{
"category": "general",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "general",
"text": "Relative Path Traversal",
"title": "CWE-23"
},
{
"category": "general",
"text": "Stack-based Buffer Overflow",
"title": "CWE-121"
},
{
"category": "general",
"text": "Improper Authorization",
"title": "CWE-285"
},
{
"category": "general",
"text": "Improper Authentication",
"title": "CWE-287"
},
{
"category": "general",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
},
{
"category": "general",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "general",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "general",
"text": "Incomplete Cleanup",
"title": "CWE-459"
},
{
"category": "general",
"text": "Improper Restriction of XML External Entity Reference",
"title": "CWE-611"
},
{
"category": "general",
"text": "Incorrect Comparison",
"title": "CWE-697"
},
{
"category": "general",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
},
{
"category": "general",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "general",
"text": "Incorrect Authorization",
"title": "CWE-863"
},
{
"category": "general",
"text": "Server-Side Request Forgery (SSRF)",
"title": "CWE-918"
},
{
"category": "general",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "general",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "general",
"text": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)",
"title": "CWE-1321"
},
{
"category": "general",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
}
],
"publisher": {
"category": "coordinator",
"contact_details": "cert@ncsc.nl",
"name": "Nationaal Cyber Security Centrum",
"namespace": "https://www.ncsc.nl/"
},
"references": [
{
"category": "external",
"summary": "Reference",
"url": "https://confluence.atlassian.com/security/security-bulletin-january-20-2026-1712324819.html"
}
],
"title": "Kwetsbaarheden verholpen in Atlassian producten",
"tracking": {
"current_release_date": "2026-01-22T09:03:42.667958Z",
"generator": {
"date": "2025-08-04T16:30:00Z",
"engine": {
"name": "V.A.",
"version": "1.3"
}
},
"id": "NCSC-2026-0034",
"initial_release_date": "2026-01-22T09:03:42.667958Z",
"revision_history": [
{
"date": "2026-01-22T09:03:42.667958Z",
"number": "1.0.0",
"summary": "Initiele versie"
}
],
"status": "final",
"version": "1.0.0"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-1"
}
}
],
"category": "product_name",
"name": "Bamboo"
},
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-2"
}
}
],
"category": "product_name",
"name": "Bitbucket"
},
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-3"
}
}
],
"category": "product_name",
"name": "Confluence"
},
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-4"
}
}
],
"category": "product_name",
"name": "Crowd Server"
},
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-5"
}
}
],
"category": "product_name",
"name": "Crucible"
},
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-6"
}
}
],
"category": "product_name",
"name": "Fisheye"
},
{
"branches": [
{
"category": "product_version_range",
"name": "vers:unknown/*",
"product": {
"name": "vers:unknown/*",
"product_id": "CSAFPID-7"
}
}
],
"category": "product_name",
"name": "Jira"
}
],
"category": "vendor",
"name": "Atlassian"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2021-3807",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "other",
"text": "Incorrect Comparison",
"title": "CWE-697"
},
{
"category": "description",
"text": "Recent updates address critical security vulnerabilities across various software, including Ansible, Node.js, and Golang packages, with significant fixes for ReDoS and sensitive data exposure issues.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2021-3807 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2021/cve-2021-3807.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2021-3807"
},
{
"cve": "CVE-2022-25883",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "other",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "description",
"text": "Multiple versions of the semver package are vulnerable to Regular Expression Denial of Service (ReDoS) through the new Range function, prompting updates in various products to mitigate this risk.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-25883 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2022/cve-2022-25883.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2022-25883"
},
{
"cve": "CVE-2022-45693",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"notes": [
{
"category": "other",
"text": "Out-of-bounds Write",
"title": "CWE-787"
},
{
"category": "description",
"text": "Multiple Oracle products, including Utilities Application Framework, WebLogic Server, Data Integrator, and Business Intelligence Enterprise Edition, have vulnerabilities allowing unauthenticated denial of service attacks, all with a CVSS score of 7.5.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2022-45693 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2022/cve-2022-45693.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2022-45693"
},
{
"cve": "CVE-2024-21538",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "other",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "description",
"text": "Recent updates across various AWS packages, Node.js versions, and Python libraries address security vulnerabilities, enhance functionality, and improve performance, while several vulnerability reports highlight critical issues in Oracle Communications, HPE Unified OSS Console, and the cross-spawn package.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-21538 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2024/cve-2024-21538.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H/E:P",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2024-21538"
},
{
"cve": "CVE-2024-38286",
"cwe": {
"id": "CWE-400",
"name": "Uncontrolled Resource Consumption"
},
"notes": [
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "other",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
},
{
"category": "description",
"text": "Apache Tomcat versions 11.0.0-M1 to 11.0.0-M20, 10.1.0-M1 to 10.1.24, and 9.0.13 to 9.0.89 are vulnerable to OutOfMemoryError and Denial of Service due to improper TLS handshake handling.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:N/SA:H",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-38286 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2024/cve-2024-38286.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.6,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2024-38286"
},
{
"cve": "CVE-2024-45296",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "other",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "description",
"text": "Multiple vulnerabilities in the path-to-regexp library and related components can lead to Denial of Service (DoS) attacks, particularly affecting Node.js applications and IBM App Connect Enterprise due to backtracking regex issues.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:P",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-45296 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2024/cve-2024-45296.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2024-45296"
},
{
"cve": "CVE-2024-45801",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"notes": [
{
"category": "other",
"text": "Inefficient Regular Expression Complexity",
"title": "CWE-1333"
},
{
"category": "other",
"text": "Improperly Controlled Modification of Object Prototype Attributes (\u0027Prototype Pollution\u0027)",
"title": "CWE-1321"
},
{
"category": "description",
"text": "Multiple vulnerabilities across Oracle products and DOMPurify allow for data compromise, denial of service, and XSS attacks, with CVSS scores ranging from 6.3 to 7.3.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:H/VA:L/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2024-45801 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2024/cve-2024-45801.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.3,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2024-45801"
},
{
"cve": "CVE-2025-12383",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "other",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Oracle Database Server versions 23.4.0-23.26.0 have a vulnerability in the Fleet Patching and Provisioning component, while Eclipse Jersey versions 2.45, 3.0.16, and 3.1.9 may ignore critical SSL configurations due to a race condition.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:H/SI:H/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-12383 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-12383.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.7,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-12383"
},
{
"cve": "CVE-2025-15284",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "other",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
},
{
"category": "description",
"text": "The `qs` module\u0027s `arrayLimit` option is vulnerable to denial-of-service attacks due to its failure to enforce limits for bracket notation, allowing attackers to exploit memory exhaustion.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/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",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-15284 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-15284.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-15284"
},
{
"cve": "CVE-2025-27152",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"notes": [
{
"category": "other",
"text": "Server-Side Request Forgery (SSRF)",
"title": "CWE-918"
},
{
"category": "description",
"text": "Recent vulnerabilities in axios, pgadmin4, and HPE software expose systems to SSRF and credential leakage, particularly through the use of absolute URLs, necessitating updates to mitigate these risks.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-27152 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-27152.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-27152"
},
{
"cve": "CVE-2025-41249",
"cwe": {
"id": "CWE-285",
"name": "Improper Authorization"
},
"notes": [
{
"category": "other",
"text": "Improper Authorization",
"title": "CWE-285"
},
{
"category": "other",
"text": "Incorrect Authorization",
"title": "CWE-863"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Multiple vulnerabilities have been identified in Oracle Financial Services and Retail products, as well as the Spring Framework, allowing unauthorized access to sensitive data and potentially leading to information disclosure.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-41249 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-41249.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-41249"
},
{
"cve": "CVE-2025-48976",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"notes": [
{
"category": "other",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
},
{
"category": "description",
"text": "Multiple denial-of-service vulnerabilities have been identified in Oracle Application Testing Suite, Oracle Agile PLM, Apache Commons FileUpload, and HPE IceWall Identity Manager, with CVSS scores of 7.5 for some products.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-48976 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-48976.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-48976"
},
{
"cve": "CVE-2025-48989",
"cwe": {
"id": "CWE-404",
"name": "Improper Resource Shutdown or Release"
},
"notes": [
{
"category": "other",
"text": "Improper Resource Shutdown or Release",
"title": "CWE-404"
},
{
"category": "other",
"text": "Uncontrolled Resource Consumption",
"title": "CWE-400"
},
{
"category": "description",
"text": "Recent updates for Apache Tomcat versions 9, 10, and 11 address the \u0027MadeYouReset\u0027 DoS vulnerability and other issues, with specific versions being susceptible to Denial of Service attacks from malformed client requests.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-48989 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-48989.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-48989"
},
{
"cve": "CVE-2025-49146",
"cwe": {
"id": "CWE-287",
"name": "Improper Authentication"
},
"notes": [
{
"category": "other",
"text": "Improper Authentication",
"title": "CWE-287"
},
{
"category": "description",
"text": "Multiple vulnerabilities in the Oracle Enterprise Data Quality product and PostgreSQL JDBC Driver allow unauthorized access and insecure authentication, with CVSS scores indicating significant risk.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-49146 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-49146.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.2,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-49146"
},
{
"cve": "CVE-2025-52434",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"notes": [
{
"category": "other",
"text": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)",
"title": "CWE-362"
},
{
"category": "description",
"text": "Apache Tomcat versions 9.0.0.M1 to 9.0.106 have multiple vulnerabilities, including a race condition affecting HTTP/2 connections and denial of service flaws, alongside issues in Oracle Graph Server and HPE Unified OSS Console.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H/E:U",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-52434 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-52434.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-52434"
},
{
"cve": "CVE-2025-52999",
"cwe": {
"id": "CWE-121",
"name": "Stack-based Buffer Overflow"
},
"notes": [
{
"category": "other",
"text": "Stack-based Buffer Overflow",
"title": "CWE-121"
},
{
"category": "description",
"text": "Multiple vulnerabilities affect Oracle Communications Unified Assurance and Oracle Business Intelligence Enterprise Edition, allowing denial of service attacks, while older jackson-core versions are prone to StackoverflowErrors when parsing nested data.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-52999 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-52999.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-52999"
},
{
"cve": "CVE-2025-53689",
"cwe": {
"id": "CWE-611",
"name": "Improper Restriction of XML External Entity Reference"
},
"notes": [
{
"category": "other",
"text": "Improper Restriction of XML External Entity Reference",
"title": "CWE-611"
},
{
"category": "description",
"text": "Apache Jackrabbit versions prior to 2.23.2 are vulnerable to blind XXE attacks due to an unsecured document build for loading privileges.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:A/AC:H/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-53689 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-53689.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.8,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-53689"
},
{
"cve": "CVE-2025-54988",
"cwe": {
"id": "CWE-611",
"name": "Improper Restriction of XML External Entity Reference"
},
"notes": [
{
"category": "other",
"text": "Improper Restriction of XML External Entity Reference",
"title": "CWE-611"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Apache Tika versions 1.13 to 3.2.1 have a critical XXE vulnerability, while Oracle PeopleSoft\u0027s OpenSearch component in versions 8.60 to 8.62 is also affected by an easily exploitable vulnerability.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-54988 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-54988.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.8,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-54988"
},
{
"cve": "CVE-2025-55163",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"notes": [
{
"category": "other",
"text": "Allocation of Resources Without Limits or Throttling",
"title": "CWE-770"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Recent updates to Netty and Oracle Communications products address critical vulnerabilities, including the \u0027MadeYouReset\u0027 attack in HTTP/2, which can lead to denial of service and resource exhaustion.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-55163 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-55163.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-55163"
},
{
"cve": "CVE-2025-55752",
"cwe": {
"id": "CWE-23",
"name": "Relative Path Traversal"
},
"notes": [
{
"category": "other",
"text": "Relative Path Traversal",
"title": "CWE-23"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Apache Tomcat versions 1.0.0-M1 to 11.0.10 are vulnerable to a directory traversal issue that may allow remote code execution if HTTP PUT requests are enabled, alongside other security vulnerabilities in HPE UOCAM.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-55752 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-55752.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 8.1,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-55752"
},
{
"cve": "CVE-2025-64775",
"cwe": {
"id": "CWE-459",
"name": "Incomplete Cleanup"
},
"notes": [
{
"category": "other",
"text": "Incomplete Cleanup",
"title": "CWE-459"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Apache Struts versions 2.0.0 to 6.7.0 and 7.0.0 to 7.0.3 have a Denial of Service vulnerability due to file leak in multipart request processing, affecting NetApp products.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-64775 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-64775.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 7.5,
"baseSeverity": "HIGH",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-64775"
},
{
"cve": "CVE-2025-66516",
"cwe": {
"id": "CWE-611",
"name": "Improper Restriction of XML External Entity Reference"
},
"notes": [
{
"category": "other",
"text": "Improper Restriction of XML External Entity Reference",
"title": "CWE-611"
},
{
"category": "other",
"text": "CWE-1035",
"title": "CWE-1035"
},
{
"category": "other",
"text": "CWE-937",
"title": "CWE-937"
},
{
"category": "description",
"text": "Apache Tika has multiple critical XML External Entity (XXE) injection vulnerabilities, particularly affecting PDF parsing, allowing remote attackers to exploit crafted documents for sensitive data disclosure and remote code execution.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-66516 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-66516.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 10.0,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-66516"
},
{
"cve": "CVE-2025-9287",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "description",
"text": "The document outlines a vulnerability in the `create-hash` package due to inadequate input type checks, leading to potential hash state manipulation and security risks, particularly in the `cipher-base` npm package versions up to 1.0.4.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:N/VI:H/VA:H/SC:H/SI:H/SA:N/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",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-9287 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-9287.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-9287"
},
{
"cve": "CVE-2025-9288",
"cwe": {
"id": "CWE-20",
"name": "Improper Input Validation"
},
"notes": [
{
"category": "other",
"text": "Improper Input Validation",
"title": "CWE-20"
},
{
"category": "description",
"text": "The document outlines a vulnerability in `sha.js` versions up to 2.4.11 due to insufficient input type checks, leading to potential denial of service and private key extraction risks.",
"title": "Summary"
},
{
"category": "general",
"text": "CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:N/VI:H/VA:H/SC:H/SI:H/SA:N/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",
"title": "CVSSV4"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2025-9288 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2025/cve-2025-9288.json"
}
],
"scores": [
{
"cvss_v3": {
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H",
"version": "3.1"
},
"products": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
}
],
"title": "CVE-2025-9288"
},
{
"cve": "CVE-2026-21569",
"notes": [
{
"category": "description",
"text": "A high severity XXE vulnerability in Crowd Data Center and Server version 7.1.0 has a CVSS score of 7.9, allowing authenticated attackers to access sensitive content without user interaction.",
"title": "Summary"
}
],
"product_status": {
"known_affected": [
"CSAFPID-1",
"CSAFPID-2",
"CSAFPID-3",
"CSAFPID-4",
"CSAFPID-5",
"CSAFPID-6",
"CSAFPID-7"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2026-21569 | NCSC-NL Website",
"url": "https://vulnerabilities.ncsc.nl/csaf/v2/2026/cve-2026-21569.json"
}
],
"title": "CVE-2026-21569"
}
]
}
Sightings
| Author | Source | Type | Date |
|---|
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.